Android Studios版本为3.0.1
布局预览显示空白屏幕,预览中的API版本显示“null”。
在styles.xml中,主题设置为Theme.AppCompat.Light.DarkActionBar。
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
答案 0 :(得分:0)
试试这个: 转到视图 - &gt;工具窗口 - &gt;预览
此外,使缓存无效并重新启动Android Studio
答案 1 :(得分:0)
尝试将您的样式更改为:-
parent="Base.Theme.AppCompat.Light.DarkActionBar"
完整样式为:-
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>