我想我的Android应用程序只能在肖像模式下运行?
我想我的Android应用程序只能在肖像模式下运行? 我怎样才能做到这一点?
在清单中,为所有的活动设置:
<activity android:name=".YourActivity" android:configChanges="orientation" android:screenOrientation="portrait"/>
让我解释:
- 使用
android:configChanges="orientation"
您可以告诉Android您将对方向的变化负责。 -
android:screenOrientation="portrait"
你设置了默认的方向模式。
在Android清单文件中,为您的<activity>
放置属性android:screenOrientation="portrait"
有两种方法,
- 在清单文件中为每个活动添加
android:screenOrientation="portrait"
- 添加
this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
在每个java文件中。
老职位我知道。 为了在纵向模式下运行你的应用程序,即使在方向可能被交换的情况下(例如在平板电脑上),我也devise了这个function,用于在正确的方向上设置设备,而不需要知道纵向和横向function在设备上组织。
private void initActivityScreenOrientPortrait() { // Avoid screen rotations (use the manifests android:screenOrientation setting) // Set this to nosensor or potrait // Set window fullscreen this.activity.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); DisplayMetrics metrics = new DisplayMetrics(); this.activity.getWindowManager().getDefaultDisplay().getMetrics(metrics); // Test if it is VISUAL in portrait mode by simply checking it's size boolean bIsVisualPortrait = ( metrics.heightPixels >= metrics.widthPixels ); if( !bIsVisualPortrait ) { // Swap the orientation to match the VISUAL portrait mode if( this.activity.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT ) { this.activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); } else { this.activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT ); } } else { this.activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_NOSENSOR); } }
奇迹般有效!
注意:通过您的活动更改this.activity
或将其添加到主要活动并删除this.activity
😉
我用
android:screenOrientation="nosensor"
如果您不想支持正面朝下肖像模式,这将有所帮助。
在清单中,为所有的活动设置:
<activity android:name=".YourActivity" android:configChanges="orientation" android:screenOrientation="portrait"/>
- 如何更改android不确定的ProgressBar颜色?
- Android Real Time Multiplayer – 房间创作失败
- managedQuery()vs context.getContentResolver.query()vs android.provider.something.query()
- 在ValueEventListener中初始化后,全局variables的值将被重置
- 如何在Android Studio中查看所有TODO任务?
- 运行Android Studio时出错
- 什么是ids.xml用于?
- intel x86模拟器加速器(HAXM安装程序)修订版6.0.5显示与Windows不兼容
- 地图没有进入模拟器的android api v2