在Android Studio 3.1.3中,我的主题编辑器不显示我选择的任何主题的预览

时间:2018-07-21 13:11:59

标签: android-studio

enter image description here

在Android Studio 3.1.3中,我的主题编辑器不显示我选择的任何主题的预览...请帮助!!!

3 个答案:

答案 0 :(得分:0)

最默认的主题是AppTheme。从那里选择它。预览版将尽快发布 编辑1:这是android studio bug 使用以下方法更新build.gradle(app):

dependencies { implementation 'com.android.support:appcompat-v7:28.0.1-alpha3' implementation 'com.android.support:design:28.0.1-alpha3' }dependencies { implementation 'com.android.support:appcompat-v7:28.0.1-alpha1' implementation 'com.android.support:design:28.0.1-alpha1' } 至 `

答案 1 :(得分:0)

可以通过将 res / values / styles.xml 更改为

来轻松解决
<!-- Base application theme. -->
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>

保存文件并选中“立即预览”。

答案 2 :(得分:0)

我以前遇到过这个问题,并通过在清单文件中添加 theme deceleration 来解决了这个问题:

android:theme="@style/Base.V7.Theme.AppCompat.Light"