私は自分のプロジェクトにzxingライブラリを含める方法をインターネットで探していましたが、このチュートリアルを見つけました: http://blog.dihaw.com/integrating-zxing-in-your-Android-app-as -standalone-scanner /
しかし、Rインポートを追加するためにBeepManagerを確認する必要がある時点に達すると、プロジェクトを(MainActivityでさえ)Rが見つからないというあらゆる種類のエラーが発生します。
また、私はこれを見つけました https://github.com/journeyapps/zxing-Android-embedded/blob/master/README.md gradleによって自動的に統合されたため、はるかに簡単に見えましたが、同期すると、ファイルが見つからないというエラーが表示されます。
助けていただければ幸いです:) Android Studio。
編集:
私はbuild.gradleに2番目のメソッドの設定(gradle設定を持つもの)を追加し、4つのエラーポップアップが表示されました:
Error:Failed to find: com.embarkmobile:zxing-Android-legacy:2.0.0
Error:Failed to find: com.google.zxing:core:3.0.1
Error:Failed to find: com.embarkmobile:zxing-Android-integration:2.0.0
Error:Failed to find: com.embarkmobile:zxing-Android-minimal:2.0.0
何か助け?
- -回答 - -
この問題を解決するには、Gradleでオフライン作業を無効にする必要がありました。 Android Studioの設定> Gradle> 'オフライン作業'のチェックを外します。その後、あなたは行ってもいいです!
build.gradle
ファイルに次を追加する必要があります。
repositories {
mavenCentral()
maven {
url "http://dl.bintray.com/journeyapps/maven"
}
}
dependencies {
// Supports Android 4.0.3 and later (API level 15)
compile 'com.journeyapps:zxing-Android-embedded:2.0.1@aar'
// Supports Android 2.1 and later (API level 7), but not optimal for later Android versions.
// If you only plan on supporting Android 4.0.3 and up, you don't need to include this.
compile 'com.journeyapps:zxing-Android-legacy:2.0.1@aar'
// Convenience library to launch the scanning and encoding Activities.
// It automatically picks the best scanning library from the above two, depending on the
// Android version and what is available.
compile 'com.journeyapps:zxing-Android-integration:2.0.1@aar'
// Version 3.0.x of zxing core contains some code that is not compatible on Android 2.2 and earlier.
// This mostly affects encoding, but you should test if you plan to support these versions.
// Older versions e.g. 2.2 may also work if you need support for older Android versions.
compile 'com.google.zxing:core:3.0.1'
}
次のような私のbuild.gradle
ファイル:
apply plugin: 'com.Android.application'
Android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.myapplication2"
minSdkVersion 16
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
mavenCentral()
maven {
url "https://raw.github.com/embarkmobile/zxing-Android-minimal/mvn-repo/maven-repository/"
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.Android.support:appcompat-v7:21.0.3'
// Supports Android 4.0.3 and later (API level 15)
compile 'com.embarkmobile:zxing-Android-minimal:2.0.0@aar'
// Supports Android 2.1 and later (API level 7), but not optimal for later Android versions.
// If you only plan on supporting Android 4.0.3 and up, you don't need to include this.
compile 'com.embarkmobile:zxing-Android-legacy:2.0.0@aar'
// Convenience library to launch the scanning and encoding Activities.
// It automatically picks the best scanning library from the above two, depending on the
// Android version and what is available.
compile 'com.embarkmobile:zxing-Android-integration:2.0.0@aar'
// Version 3.0.x of zxing core contains some code that is not compatible on Android 2.2 and earlier.
// This mostly affects encoding, but you should test if you plan to support these versions.
// Older versions e.g. 2.2 may also work if you need support for older Android versions.
compile 'com.google.zxing:core:3.0.1'
}
コードは here です。
また、それを使用する方法については、Stackoverflowの私の答えを参照してください here
メソッドと、テストした単純なコードが含まれています。
Zxing-Android-embeddedのバージョン3では、これらをbuild.gradle
ファイル:
repositories {
jcenter()
}
dependencies {
compile 'com.journeyapps:zxing-Android-embedded:3.0.2@aar'
compile 'com.google.zxing:core:3.2.0'
}
次の手順に従ってください: https://github.com/journeyapps/zxing-Android-embedded/
また、IntentIntegrator
を簡単に変更してポートレートモードを使用できるようになり、ビューを簡単にカスタマイズできるようになりました。
ZXingをバーコードまたはQrスキャン用に統合する最も簡単な方法。
完全なリファレンス: Scan Barcode ZXing Android
依存関係を追加する
compile 'me.dm7.barcodescanner:zxing:1.9'
ScanActivity
import Android.support.v7.app.AppCompatActivity;
import Android.os.Bundle;
import Android.util.Log;
import com.google.zxing.Result;
import me.dm7.barcodescanner.zxing.ZXingScannerView;
public class ScanActivity extends AppCompatActivity implements ZXingScannerView.ResultHandler{
private ZXingScannerView mScannerView;
@Override
public void onCreate(Bundle state) {
super.onCreate(state);
mScannerView = new ZXingScannerView(this); // Programmatically initialize the scanner view
setContentView(mScannerView); // Set the scanner view as the content view
}
@Override
public void onResume() {
super.onResume();
mScannerView.setResultHandler(this); // Register ourselves as a handler for scan results.
mScannerView.startCamera(); // Start camera on resume
}
@Override
public void onPause() {
super.onPause();
mScannerView.stopCamera(); // Stop camera on pause
}
@Override
public void handleResult(Result rawResult) {
// Do something with the result here
// Log.v("tag", rawResult.getText()); // Prints scan results
// Log.v("tag", rawResult.getBarcodeFormat().toString()); // Prints the scan format (qrcode, pdf417 etc.)
MainActivity.tvresult.setText(rawResult.getText());
onBackPressed();
// If you would like to resume scanning, call this method below:
//mScannerView.resumeCameraPreview(this);
}
}
私はこれで動作しています:
repositories { mavenCentral()
maven { url "https://raw.github.com/embarkmobile/zxing-Android-minimal/mvn-repo/maven-repository/" }
}
compile 'com.google.zxing:core:3.2.1'
compile 'com.embarkmobile:zxing-Android-minimal:2.0.0@aar'
compile 'com.embarkmobile:zxing-Android-integration:2.0.0@aar'
IntentIntegratorの使用をお勧めします
IntentIntegrator integrator = new IntentIntegrator(getActivity());
integrator.forSupportFragment(this).initiateScan();
RequestCodeはIntentIntegrator.REQUEST_CODEで返されます