本文介绍了buttonStyle不适用于22.1.1的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 com.android.support:appcompat-v7:22.1.1

此属性 android:buttonStyle 并未为每个按钮设置该样式,我需要设置 android:theme = @ style / AppTheme.Button 手动按每个按钮。

This attribute android:buttonStyle is not setting that style for every button, I need to set android:theme="@style/AppTheme.Button" manually on each button.

   <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="android:buttonStyle">@style/AppTheme.Button</item>
   </style>

我需要怎么做才能设置一般样式?

What do I need to do to set a general style for it?

推荐答案

在主题中使用buttonStyle代替android:buttonStyle

Use buttonStyle insteadof android:buttonStyle in your theme

这篇关于buttonStyle不适用于22.1.1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-09 05:55