Android zxing二维码开发 横屏转竖屏
该文主要记录使用二维码Android源码开发过程中遇到的一些问题整理
源码下载地址
http://code.google.com/p/zxing/downloads/list
横屏修改为竖屏
- 修改AndroidManifest.xml文件
修改AndroidManifest.xml文件中CaptureActivity对应的screenOrientation为竖屏,即android:screenOrientation=”portrait”。 修改CaptureActivity文件
修改CaptureActivity文件中的onResume方法里面对setRequestedOrientation方法的调用,将如下代码删除:if (prefs.getBoolean(PreferencesActivity.KEY_DISABLE_AUTO_ORIENTATION, true)) { setRequestedOrientation(getCurrentOrientation()); } else { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE); }
<