美文网首页
You need to use a Theme.AppCompa

You need to use a Theme.AppCompa

作者: 白夜的地平线 | 来源:发表于2019-08-14 11:28 被阅读0次

报错:You need to use a Theme.AppCompat theme (or descendant) with this activity.
多数为继承AppCompatActivity和activity的android:theme冲突导致,
android:theme有
如下为继承AppCompatActivity:

android:theme="@style/TranslucentTheme"

<!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

    <!--&lt;!&ndash;Android 4.4 版本&ndash;&gt;-->
    <style name="TranslucentTheme" parent="AppTheme" />

如下为继承activity:

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

mainactivity内镶嵌tablayout+fragment
谷歌不支持

相关文章

网友评论

      本文标题:You need to use a Theme.AppCompa

      本文链接:https://www.haomeiwen.com/subject/ukdwlctx.html