如何查看横屏模式下的活动?
此示例演示如何查看横屏模式下的活动。
第 1 步 − 在 Android Studio 中创建一个新项目,转到文件 ⇒ 新建项目,然后填写所有必需的详细信息以创建一个新项目。
第 2 步 − 在 res/layout/activity_main.xml 中添加以下代码。
<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <TextView android:id="@+id/conf" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> </android.support.constraint.ConstraintLayout>
在上面的代码中,我们采用了文本视图来显示模式名称。
第 3 步− 在 java/MainActivity.xml 中添加以下代码
package com.example.myapplication; import android.content.res.Configuration; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.widget.TextView; public class MainActivity extends AppCompatActivity { TextView conf; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); conf = findViewById(R.id.conf); } @Override public void onConfigurationChanged(Configuration _newConfig) { super.onConfigurationChanged(_newConfig); if (_newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) { conf.setText("It is landscape"); } } }
第 3 步− 在 AndroidManifest.xml 中添加以下代码
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.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:configChanges="keyboardHidden|orientation" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
我们尝试运行您的应用程序。我假设您已将实际的 Android 移动设备与计算机连接起来。要从 Android Studio 运行应用程序,请打开您项目的某个活动文件,然后单击运行 工具栏上的图标。选择您的移动设备作为选项,然后检查将显示您默认屏幕的移动设备 -
单击 此处 下载项目代码
广告