Missing styles. Is the correct theme chosen for this layout?

在我们使用第三方View框架时(如:TabPageIndicator),会定义theme属性,当启动项目时,会发现原有的ApplicationTheme样式没有生效(如:状态栏颜色),回到XML,Android Studio也会提示当前布局存在一些问题,部分提示信息如下:

Missing styles. Is the correct theme chosen for this layout?  Use the Theme combo
 box above the layout to choose a different layout, or fix the theme style  
 references.   Failed to find style 'vpiTabPageIndicatorStyle' in current theme  
  java.lang.IllegalStateException: ViewPager has not been bound. 

解决方案:
在Manifest内对应的使用单独theme的Activity,我们需要在这个Activity的theme里

android:theme="@style/StyledIndicatorsBGwhite"

点击进入style配置文件,application theme样式如下(个人示例):

    <style name="AppTheme.NoActionBar">
        <item name="windowNoTitle">true</item>
        <item name="windowActionBar">false</item>
        <item name="android:windowBackground">@android:color/white</item>
        <item name="android:screenOrientation">portrait</item>
    </style>

而我们要修改的android:theme=”@style/StyledIndicatorsBGwhite”则在style文件内进入如下更改:

//在这个style name 后增加parent属性,值为application theme所对应的样式名,我的是AppTheme.NoActionBar

    <style name="StyledIndicatorsBGwhite" parent="@style/AppTheme.NoActionBar">

    //itemstyle为自己需要实现的style配置
        <item name="vpiTabPageIndicatorStyle">@style/CustomTabPageIndicatorBGWhite</item>
    </style>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值