Android工作室仍在.noactionbar主题上显示标题

时间:2015-04-01 21:01:35

标签: android android-studio

这是我的风格:

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> </style>

这就是我在渲染预览中得到的结果

enter image description here

有人可以告诉我,如果我做错了什么或者android studio仍然是一堆垃圾。感谢。

1 个答案:

答案 0 :(得分:1)

试试这个

<强>值/的themes.xml

<resources>
<style name="Theme.Mytheme" parent="Theme.AppCompat.Light.NoActionBar">

        <item name="colorPrimary">@color/primary_green</item>
        <item name="colorPrimaryDark">@color/primary_dark_green</item>
        <item name="colorAccent">@color/primary_dark_green</item>

</style>

</resources>

<强>的AndroidManifest.xml

//on your activity

<activity
            android:name="com.example.MyApp.Activity1"
            android:label="@string/app_name"
            android:screenOrientation="landscape"
            android:theme="@style/Theme.MyTheme">
</activity>