我希望你能幫助我。在使用Zxing嵌入式庫來使用QR掃描儀時,問題在於橫向模式,我想將其更改爲縱向。在Android Studio中使用ZXING更改QR掃描儀方向
我有這對我的Graddle
compile 'com.journeyapps:zxing-android-embedded:[email protected]'
compile 'com.journeyapps:zxing-android-integration:[email protected]'
compile 'com.google.zxing:core:3.0.1'
的依存關係,我有這在我的java類激活與一個按鈕掃描儀...
public void scanQR(View view){
IntentIntegrator integrator = new IntentIntegrator(this);
integrator.setDesiredBarcodeFormats(IntentIntegrator.QR_CODE_TYPES);
integrator.setResultDisplayDuration(0);//Text..
integrator.setPrompt(" Scan a QR Code");
integrator.setScanningRectangle(450, 450);//size
integrator.setCameraId(0); // Use a specific camera of the device
integrator.initiateScan();
}
感謝您的幫助!
你如何擴大captureactivity?我得到的錯誤是不能從最終CaptureActivity – Shadow
@Shadow我只是檢查我的答案繼承,我忘了斑馬線:core3.2.0 檢查build.glade 確保你有這兩個庫添加{ 「com.journeyapps: zxing-android-embedded:[email protected]'和 'com.google.zxing:core:3.2.0'} –
@Shadow這是從CaptureActivity擴展的那個類 https://gist.github.com/KaLingCode/21a557c9a96333ec037c –