如何在Android中禁用横屏模式?
Android支持两种方向:纵向和横向。我们可以在Android应用程序中禁用方向。此示例演示如何在Android中禁用横向模式。
步骤 1 - 在Android Studio中创建一个新项目,转到文件⇒新建项目,并填写所有必要的信息以创建新项目。
步骤 2 - 将以下代码添加到res/layout/activity_main.xml。
<?xml version = "1.0" encoding = "utf-8"?> <LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" xmlns:tools = "http://schemas.android.com/tools" android:layout_width = "match_parent" android:layout_height = "match_parent" tools:context = ".MainActivity" android:background = "#dde4dd"> <EditText android:id = "@+id/editText" android:layout_width = "match_parent" android:layout_height = "wrap_content" /> </LinearLayout>
在上面的代码中,它包含线性布局和EditText。它将支持横向和纵向,如下所示 -
以上输出表示横向模式
以上输出表示纵向模式。
要禁用横向模式,需要在manifest.xml中添加screenOrientation标签,如下所示 -
<?xml version = "1.0" encoding = "utf-8"?> <manifest xmlns:android = "http://schemas.android.com/apk/res/android" package = "com.example.andy.myapplication"> <application android:allowBackup = "true" android:icon = "@mipmap/ic_launcher" android:label = "@string/app_name" android:roundIcon = "@mipmap/ic_launcher_round" android:supportsRtl = "true" android:theme = "@style/AppTheme"> <activity android:name = ".MainActivity" android:screenOrientation = "portrait"> <intent-filter> <action android:name = "android.intent.action.MAIN" /> <category android:name = "android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
在上面的代码中,我们将screenOrientation设置为纵向,这意味着MainActivity将只支持纵向模式。如果您想开发一个纵向模式的应用程序,请在application标签内添加screenOrientation。
让我们尝试运行您的应用程序。我假设您已将您的实际Android手机设备连接到您的电脑。要从Android Studio运行应用程序,请打开您的项目中的一个Activity文件,然后单击工具栏中的运行 图标。选择您的手机设备作为选项,然后检查您的手机设备,它将显示您的默认屏幕 -
在以上结果中,它只显示纵向模式。现在旋转您的设备,它不会根据方向更改视图。
广告