我在Preview
的{{1}}窗口中收到以下错误:
渲染问题缺少样式。是否选择了正确的主题 这个布局?使用布局上方的主题组合框选择一个 不同的布局,或修复主题样式引用。找不到 当前主题中的'?attr / actionBarPopupTheme'。 (4个类似的错误没有 示出)
我创建了一个自定义样式/主题。这是关于Android Studio
:
styles.xml
我的布局文件标题如下所示:
<resources xmlns:tools="http://schemas.android.com/tools" xmlns:android="http://schemas.android.com/apk/res/android">
<style name="CustomActionBarTheme" parent="@style/Theme.AppCompat.Light">
<item name="android:actionBarStyle" tools:ignore="NewApi">@style/MyActionBar</item>
<item name="actionBarStyle">@style/MyActionBar</item>
<item name="actionBarTheme">@style/MyActionBarTheme</item>
</style>
<style name="MyActionBar" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
<item name="android:background" tools:ignore="NewApi">@color/white</item>
<item name="titleTextStyle">@style/MyActionBar.ActionBar.TitleTextStyle</item>
<item name="background">@color/bg_common</item>
</style>
<style name="MyActionBarTheme" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
<item name="actionMenuTextColor">@color/title</item>
<item name="colorControlNormal">@color/title</item>
</style>
<style name="MyActionBar.ActionBar.TitleTextStyle" parent="@style/TextAppearance.AppCompat.Widget.ActionBar.Title">
<item name="android:textColor">@color/title</item>
</style>
</resources>
在我的清单文件中,我添加了应用程序标记:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
style="@style/CustomActionBarTheme"
android:id="@+id/drawer_layout"
android:background="@color/bg_common_2"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
...
为什么我会收到错误?我还在预览窗口中选择了android:theme="@style/CustomActionBarTheme"
作为主题。我错过了什么吗?感谢您提前获得任何建议!
答案 0 :(得分:5)
Android Studio使用安装的最新SDK来预览布局文件。由于缺少样式,这可能导致预览错误 - 切换到较旧的API级别(例如从23到22)可以解决此问题。
答案 1 :(得分:0)
另一种方法是更改布局主题(靠近SDK预览版按钮) 工作正常