在最新的支持lib版本(v23.1.0)中,我注意到主题主题之一不再对我有用。我使用actionButtonStyle主题属性来自定义工具栏中的操作按钮:

<style name="AppThemeBase" parent="Theme.AppCompat.Light.NoActionBar">
    ......
    <item name="actionButtonStyle">@style/Custom.Widget.AppCompat.ActionButton</item>
    ......
</style>

<style name="Custom.Widget.AppCompat.ActionButton" parent="Widget.AppCompat.ActionButton">
    <item name="textAllCaps">false</item>
</style>


支持lib v23.0.1可以很好地工作,但是v23.1.0不再可用。

因此,问题是-这是自定义工具栏操作按钮的正确方法吗?如果没有,那么使用最新的支持库发行版正确的方法是什么?

试图询问第一方(https://code.google.com/p/android/issues/detail?id=191544)-但收到“我们不在乎”响应:(

最佳答案

让我们开始理解为什么v7支持库v23.1.0中存在此问题。

AppCompatTextHelper v23.0.1:

// Now check TextAppearance's textAllCaps value
if (ap != -1) {
    TypedArray appearance = context.obtainStyledAttributes(ap, R.styleable.TextAppearance);
    if (appearance.hasValue(R.styleable.TextAppearance_textAllCaps)) {
        setAllCaps(appearance.getBoolean(R.styleable.TextAppearance_textAllCaps, false));
    }
    appearance.recycle();
}

// Now read the style's value
a = context.obtainStyledAttributes(attrs, TEXT_APPEARANCE_ATTRS, defStyleAttr, 0);
if (a.hasValue(0)) {
    setAllCaps(a.getBoolean(0, false));
}
a.recycle();


AppCompatTextHelper v23.1.0:

// Now check TextAppearance's textAllCaps value
if (ap != -1) {
    TypedArray appearance = context.obtainStyledAttributes(ap, R.styleable.TextAppearance);
    if (appearance.hasValue(R.styleable.TextAppearance_textAllCaps)) {
        setAllCaps(appearance.getBoolean(R.styleable.TextAppearance_textAllCaps, false));
    }
    appearance.recycle();
}

// Now read the style's value
a = context.obtainStyledAttributes(attrs, TEXT_APPEARANCE_ATTRS, defStyleAttr, 0);
if (a.getBoolean(0, false)) {
    setAllCaps(true);
}
a.recycle();


如您在v23.1.0中所见,只有样式的值是setAllCaps时,才会调用true。这就是为什么当值为false时什么都不会发生的原因。在以前的版本中,每次有值时都会调用setAllCaps

如何还原属性textAllCaps像版本23.0.1?

将这些行添加到styles.xml中:

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
    <item name="actionButtonStyle">@style/Custom.Widget.AppCompat.ActionButton</item>
    <item name="actionMenuTextAppearance">@style/Custom.TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
</style>

<style name="Custom.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="@style/TextAppearance.AppCompat.Widget.ActionBar.Menu">
    <item name="textAllCaps">false</item>
</style>

<style name="Custom.Widget.AppCompat.ActionButton" parent="Widget.AppCompat.ActionButton">
    <item name="textAllCaps">false</item>
</style>


将主题应用到工具栏:

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    app:theme="@style/AppTheme.AppBarOverlay"/>

10-08 07:08