2015-11-05 37 views
1

我試圖從橫向更改斑馬線嵌入式掃描方向爲縱向。斑馬線嵌入式 - setCaptureActivity()會導致該活動不會出現

我找到了一個例子,如何做到這一點在ZE readme on github。但行

integrator.setCaptureActivity(CaptureActivityAnyOrientation.class); 

導致活動甚至不顯示。沒有這條線,除了縱向方向,它的效果很好。此代碼適用於版本3和更高版本,我使用版本3.0.2。

有沒有人有同樣的問題?

回答

0

改變方向

要改變方向,請在您的AndroidManifest.xml中的方位,讓ManifestMerger更新活動的定義。

樣品:

<activity 
     android:name="com.journeyapps.barcodescanner.CaptureActivity" 
     android:screenOrientation="fullSensor" 
     tools:replace="screenOrientation" /> 

IntentIntegrator integrator = new IntentIntegrator(this); 
integrator.setOrientationLocked(false); 
integrator.initiateScan();