如何在设计审查中显示标题栏?

时间:2018-07-10 10:25:47

标签: android listview

在设计布局时,设计审查不会显示标题栏,但是模拟器可以显示标题栏,如下所示:
enter image description here

我的style.xml显示如下:
enter image description here

此外,清单显示如下:

    <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>  

在设计版式时,是否可以一直保留标题栏?即使创建了很多布局文件,我仍然希望每个布局都可以保留标题栏。

3 个答案:

答案 0 :(得分:1)

您需要在编辑器中更改主题

像下面的图片一样可以工作

![enter image description here

答案 1 :(得分:1)

在Android Studio设计预览中检查当前主题: enter image description here

它不能以“ .NoActionBar”结尾,您可以将主题设置为“ AppTheme”。

答案 2 :(得分:0)

如果您使用的是28 API。请将API VERSION更改为26并使用

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">