我想我的android应用程序只运行在纵向模式?

我想我的android应用程序只运行在纵向模式? 我该怎么做呢?< / p >

291601 次浏览

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

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

让我解释一下:

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

在Android Manifest文件中,为你的<activity>放置属性

我使用

 android:screenOrientation="nosensor"

这是有用的,如果你不想支持上下竖屏模式。

有两种方法,

  1. 为清单文件中的每个活动添加android:screenOrientation="portrait"
  2. 在每个java文件中添加this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

老帖子我知道。为了让你的应用程序总是在纵向模式下运行,即使方向可能会被交换(例如在平板电脑上),我设计了这个功能,用于将设备设置在正确的方向上,而不需要知道设备上的纵向和横向功能是如何组织的。

   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); }


}

效果好极了!

< p >注意: 通过您的活动更改this.activity或将其添加到主活动并删除this.activity;-)

在舱单中:

<activity android:name=".activity.MainActivity"
android:screenOrientation="portrait"
tools:ignore="LockedOrientationActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

或:在MainActivity中

@SuppressLint("SourceLockedOrientationActivity")
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

试试这个:(如果SDK 23 &上图)

添加你的AndroidManifest.xlm;

    <activity android:name=".YourActivity"
android:screenOrientation="locked"/>

像这样。

在android (24 and above)new SDk中,你可以根据需要在Manifest.xml中的activity标签中使用:

<activity
android:name=".feature.main.MainActivity"
********* android:screenOrientation="locked" ******
android:configChanges="uiMode"
android:windowSoftInputMode="adjustPan"
android:exported="true">

它真的有用!

公认的答案是正确的。然而,如果你碰巧在c#中使用Uno平台进行跨平台开发,则Activity配置定义在类中的Activity属性中。我认为如果您正在进行Xamarin或Xamarin Forms开发,情况也是一样的。

< p >设置: 屏幕朝向=屏幕朝向。肖像

.在属性参数中

下面是MainActivity.cs类级属性中的一个例子:

[Activity(MainLauncher = true,
ConfigurationChanges = global::Uno.UI.ActivityHelper.AllConfigChanges,
WindowSoftInputMode = SoftInput.AdjustPan | SoftInput.StateHidden,
ScreenOrientation = ScreenOrientation.Portrait)]
public class MainActivity : Windows.UI.Xaml.ApplicationActivity { }

# unplatform #xamarin #csharp #windows #跨平台