这是我的风格:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
</style>
这就是我在渲染预览中得到的结果
有人可以告诉我,如果我做错了什么或者android studio仍然是一堆垃圾。感谢。
答案 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>