如何从style.xml查找此错误

时间:2018-07-23 08:52:31

标签: android xml

第一个样式的主题有错误 如果我更改第一种样式的父项,则不会显示错误,但是在显示父项时会显示错误 我在模拟器上成功运行的代码,但是当我在任何移动设备上运行它时,都会生成一条消息“未安装应用程序”。请提出一些解决方案。

<!-- 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>


<style name="Transparent" parent="@style/AppTheme">
    <item name="android:windowBackground">@android:color/transparent</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowIsFloating">true</item>
    <item name="android:windowIsTranslucent">true</item>
    <item name="android:windowContentOverlay">@null</item>
    <item name="android:backgroundDimEnabled">true</item>
</style>

0 个答案:

没有答案