我想我的Android应用程序只能在肖像模式下运行?

我想我的Android应用程序只能在肖像模式下运行? 我怎样才能做到这一点?

在清单中,为所有的活动设置:

<activity android:name=".YourActivity" android:configChanges="orientation" android:screenOrientation="portrait"/> 

让我解释:

  • 使用android:configChanges="orientation"您可以告诉Android您将对方向的变化负责。
  • android:screenOrientation="portrait"你设置了默认的方向模式。

在Android清单文件中,为您的<activity>放置属性android:screenOrientation="portrait"

有两种方法,

  1. 在清单文件中为每个活动添加android:screenOrientation="portrait"
  2. 添加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"/>