在设计布局时,设计审查不会显示标题栏,但是模拟器可以显示标题栏,如下所示:
此外,清单显示如下:
<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">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
在设计版式时,是否可以一直保留标题栏?即使创建了很多布局文件,我仍然希望每个布局都可以保留标题栏。