我也使用這個插件!我感覺同樣的問題。
我修正了它在AndroidManifest.xml
中加入screenOrientation的 掃描活動。在採取稍微留意一下你AndroidManifest.xml
(它如何必須):
<activity android:clearTaskOnLaunch="true" android:screenOrientation="landscape" android:configChanges="orientation|keyboardHidden" android:exported="false" android:name="com.google.zxing.client.android.CaptureActivity" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:windowSoftInputMode="stateAlwaysHidden">
<intent-filter>
<action android:name="com.google.zxing.client.android.SCAN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
注意android:screenOrientation="landscape"
增加了。不幸的是,你的觀點會停留在「風景」中,但你的相機以正確的方式顯示圖像。