我通过创建Splash_Screen
类并设置清单来显示初始启动屏幕:
<activity
android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".Splash_Screen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
我的Splash_Screen
类看起来像这样:
public class Splash_Screen extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash_screen);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
startActivity(new Intent(getApplicationContext(), MainActivity.class));
}
}, 3000);
}
}
我为初始屏幕创建了一个默认布局文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
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=".Splash_Screen">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:src="@drawable/splash_default"/>
</RelativeLayout>
,然后在预览面板中,通过选择“预览方向”下拉菜单并选择“创建横向版本”,创建了第二个XML文件。在新文件中,我交换了ImageView
源文件。我的布局结构如下:
现在,当应用程序显示启动屏幕且我处于横向模式时(无论是以这种方式启动还是从纵向模式更改为纵向模式),应用程序都会崩溃。在应用内,它不会在横向模式下崩溃。
我想念什么?