我正在尝试设置AppCompat的对话框,以便按钮使用与应用程序的强调颜色相同的颜色,而不重复颜色本身。通过在values-v21
中使用此样式文件,这与AppCompat v22完美配合(显然仅适用于Lollipop):
<style name="AppTheme" parent="@style/Theme.AppCompat">
<item name="colorAccent">#FF9800</item>
<item name="android:alertDialogTheme">@style/AlertDialogTheme</item>
</style>
<style name="AlertDialogTheme" parent="android:Theme.Material.Dialog.Alert">
<item name="android:colorAccent">?attr/colorAccent</item>
</style>
当AppCompat v22.1 was released我尝试为所有Android版本设置此项时,我将这些样式移到基本values
文件夹中,并基本上替换了所有android:
和v21特定属性由他们的AppCompat同行。
<style name="AppTheme" parent="Theme.AppCompat">
<item name="colorAccent">#FF9800</item>
<item name="alertDialogTheme">@style/AlertDialogTheme</item>
</style>
<style name="AlertDialogTheme" parent="Theme.AppCompat.Dialog.Alert">
<item name="colorAccent">?attr/colorAccent</item>
</style>
然而,它无效 - 应用在尝试显示警告对话框时崩溃。在logcat中有一些警告,我强烈怀疑它与问题有关:
05-08 16:55:44.863 W/ResourceType﹕ Too many attribute references, stopped at: 0x7f01009e
例外是:
05-08 16:55:44.900 21301-21301/com.example.test.testaccentcolor E/AndroidRuntime﹕ FATAL EXCEPTION: main
Process: com.example.test.testaccentcolor, PID: 21301
android.view.InflateException: Binary XML file line #124: Error inflating class Button
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:763)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:806)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:809)
at android.view.LayoutInflater.inflate(LayoutInflater.java:504)
at android.view.LayoutInflater.inflate(LayoutInflater.java:414)
at android.view.LayoutInflater.inflate(LayoutInflater.java:365)
at android.support.v7.app.AppCompatDelegateImplV7.setContentView(AppCompatDelegateImplV7.java:249)
at android.support.v7.app.AppCompatDialog.setContentView(AppCompatDialog.java:75)
at android.support.v7.app.AlertController.installContent(AlertController.java:216)
at android.support.v7.app.AlertDialog.onCreate(AlertDialog.java:240)
at android.app.Dialog.dispatchOnCreate(Dialog.java:373)
at android.app.Dialog.show(Dialog.java:274)
at android.support.v7.app.AlertDialog$Builder.show(AlertDialog.java:902)
at com.example.test.testaccentcolor.MainActivity.onOptionsItemSelected(MainActivity.java:37)
at android.app.Activity.onMenuItemSelected(Activity.java:2885)
at android.support.v4.app.FragmentActivity.onMenuItemSelected(FragmentActivity.java:353)
at android.support.v7.app.AppCompatActivity.onMenuItemSelected(AppCompatActivity.java:144)
at android.support.v7.internal.view.WindowCallbackWrapper.onMenuItemSelected(WindowCallbackWrapper.java:99)
at android.support.v7.app.AppCompatDelegateImplV7.onMenuItemSelected(AppCompatDelegateImplV7.java:538)
at android.support.v7.internal.view.menu.MenuBuilder.dispatchMenuItemSelected(MenuBuilder.java:802)
at android.support.v7.internal.view.menu.MenuItemImpl.invoke(MenuItemImpl.java:153)
at android.support.v7.internal.view.menu.MenuBuilder.performItemAction(MenuBuilder.java:949)
at android.support.v7.internal.view.menu.MenuBuilder.performItemAction(MenuBuilder.java:939)
at android.support.v7.internal.view.menu.MenuPopupHelper.onItemClick(MenuPopupHelper.java:187)
at android.widget.AdapterView.performItemClick(AdapterView.java:305)
at android.widget.AbsListView.performItemClick(AbsListView.java:1146)
at android.widget.AbsListView$PerformClick.run(AbsListView.java:3053)
at android.widget.AbsListView$3.run(AbsListView.java:3860)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5254)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
Caused by: java.lang.RuntimeException: Failed to resolve attribute at index 5
at android.content.res.TypedArray.getColorStateList(TypedArray.java:425)
at android.widget.TextView.<init>(TextView.java:991)
at android.widget.Button.<init>(Button.java:111)
at android.widget.Button.<init>(Button.java:107)
at android.support.v7.widget.AppCompatButton.<init>(AppCompatButton.java:60)
at android.support.v7.widget.AppCompatButton.<init>(AppCompatButton.java:56)
at android.support.v7.internal.app.AppCompatViewInflater.createView(AppCompatViewInflater.java:97)
at android.support.v7.app.AppCompatDelegateImplV7.createView(AppCompatDelegateImplV7.java:782)
at android.support.v7.app.AppCompatDelegateImplV7.onCreateView(AppCompatDelegateImplV7.java:810)
at android.support.v4.view.LayoutInflaterCompatHC$FactoryWrapperHC.onCreateView(LayoutInflaterCompatHC.java:44)
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:725)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:806)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:809)
at android.view.LayoutInflater.inflate(LayoutInflater.java:504)
at android.view.LayoutInflater.inflate(LayoutInflater.java:414)
at android.view.LayoutInflater.inflate(LayoutInflater.java:365)
at android.support.v7.app.AppCompatDelegateImplV7.setContentView(AppCompatDelegateImplV7.java:249)
at android.support.v7.app.AppCompatDialog.setContentView(AppCompatDialog.java:75)
at android.support.v7.app.AlertController.installContent(AlertController.java:216)
at android.support.v7.app.AlertDialog.onCreate(AlertDialog.java:240)
at android.app.Dialog.dispatchOnCreate(Dialog.java:373)
at android.app.Dialog.show(Dialog.java:274)
at android.support.v7.app.AlertDialog$Builder.show(AlertDialog.java:902)
at com.example.test.testaccentcolor.MainActivity.onOptionsItemSelected(MainActivity.java:37)
at android.app.Activity.onMenuItemSelected(Activity.java:2885)
at android.support.v4.app.FragmentActivity.onMenuItemSelected(FragmentActivity.java:353)
at android.support.v7.app.AppCompatActivity.onMenuItemSelected(AppCompatActivity.java:144)
at android.support.v7.internal.view.WindowCallbackWrapper.onMenuItemSelected(WindowCallbackWrapper.java:99)
at android.support.v7.app.AppCompatDelegateImplV7.onMenuItemSelected(AppCompatDelegateImplV7.java:538)
at android.support.v7.internal.view.menu.MenuBuilder.dispatchMenuItemSelected(MenuBuilder.java:802)
at android.support.v7.internal.view.menu.MenuItemImpl.invoke(MenuItemImpl.java:153)
at android.support.v7.internal.view.menu.MenuBuilder.performItemAction(MenuBuilder.java:949)
at android.support.v7.internal.view.menu.MenuBuilder.performItemAction(MenuBuilder.java:939)
at android.support.v7.internal.view.menu.MenuPopupHelper.onItemClick(MenuPopupHelper.java:187)
at android.widget.AdapterView.performItemClick(AdapterView.java:305)
at android.widget.AbsListView.performItemClick(AbsListView.java:1146)
at android.widget.AbsListView$PerformClick.run(AbsListView.java:3053)
at android.widget.AbsListView$3.run(AbsListView.java:3860)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5254)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
当然,复制颜色值(或创建颜色资源并引用它)是有效的......但由于项目结构,我需要这样做。
总结一下:我认为对?attr/colorAccent
的引用是以某种方式创建一个循环...但我无法弄清楚为什么或如何解决它。
有什么想法吗?
更新:为什么我只需要/想要在主题中设置accentColor
?
我们有一个许多应用程序共有的库,它定义了必须从中派生实际应用程序主题的“基本”主题。所以简化的上述例子实际上更类似于这样的事情:
<!-- Styles that are inherited by application-generated styles. -->
<style name="Theme.Library.Dark" parent="@style/Theme.AppCompat">
<item name="alertDialogTheme">@style/Theme.Library.Dark.AlertDialog</item>
<!-- more properties -->
</style>
<style name="Theme.Library.Dark.AlertDialog" parent="@style/Theme.AppCompat.Dialog.Alert">
<item name="colorAccent">?attr/colorAccent</item>
<!-- more properties -->
</style>
(加上Light and Light with Dark Action Bar的相应变体)。
在此之后,应用程序项目应该只从提供的列表中选择一个基本主题,然后具有如下内容:
<!-- Application theme -->
<style name="ApplicationTheme" parent="Theme.Library.Dark">
<-- Ohter material colors -->
<item name="colorAccent">#FF9800</item>
</style>
至少这是理想的情况,之前有效(正如@Vikram在答案中指出的那样,显然只是因为有两种不同的colorAccent
属性)。
这种方案的优点是我不必在库主题中为colorAccent
提供默认值,因为它们是从AppCompat基础继承的。{/ p>
另外,如果我需要创建颜色资源,我需要其中两个(对于浅色和深色变体),因为默认颜色不一样。
所以,理想情况下,我正在寻找类似的解决方案(如果存在的话)。
答案 0 :(得分:14)
<item name="colorAccent">?attr/colorAccent</item>
您已经知道这不起作用。这就是原因:
ssize_t ResTable::Theme::getAttribute(uint32_t resID, Res_value* outValue,
uint32_t* outTypeSpecFlags) const
{
int cnt = 20;
if (outTypeSpecFlags != NULL) *outTypeSpecFlags = 0;
do {
....
....
if (type == Res_value::TYPE_ATTRIBUTE) {
if (cnt > 0) {
cnt--;
resID = te.value.data;
continue;
}
ALOGW("Too many attribute references, stopped at: 0x%08x\n", resID);
return BAD_INDEX;
}
....
....
} while (true);
return BAD_INDEX;
}
该片段不言自明。你可以:
<item name="colorZ" >?attr/colorY</item>
然后:
<item name="colorY" >?attr/colorX</item>
.... ....
但是像这样的链接属性不能超过20级。由于Too many attribute references...
,Android放弃了。
在您的情况下,您通过尝试读取其当前值来设置属性的值。 Android继续寻找,但却找到了另一个参考 - 无尽的追求。
为什么之前有效?
<style name="AppTheme" parent="@style/Theme.AppCompat">
<item name="colorAccent">#FF9800</item>
<item name="android:alertDialogTheme">@style/AlertDialogTheme</item>
</style>
<style name="AlertDialogTheme" parent="android:Theme.Material.Dialog.Alert">
<item name="android:colorAccent">?attr/colorAccent</item>
</style>
在AppTheme
中,您要设置支持库的colorAccent
属性(没有 android:命名空间)。在AlertDialogTheme
下,您将android:colorAccent
设置为支持库colorAccent
。这就是无限循环不成形的原因。
?attr/colorAccent
已在创建Context
时传递的AlertDialog
内得到解决。因此,它已针对<item name="colorAccent">#FF9800</item>
解决。
一种可能的解决方法是在attr
中定义自定义res/values/attrs.xml
:
<attr name="alertDialogColorAccent" format="reference|color"/>
现在,我们可以在AppTheme
下初始化此属性:
<style name="AppTheme" parent="@style/Theme.AppCompat">
<item name="colorAccent">#FF9800</item>
<item name="alertDialogColorAccent" >?attr/colorAccent</item>
<item name="android:alertDialogTheme">@style/AlertDialogTheme</item>
</style>
并在AlertDialogTheme
中使用它:
<style name="AlertDialogTheme" parent="android:Theme.Material.Dialog.Alert">
<item name="colorAccent">?attr/alertDialogColorAccent</item>
</style>
但是,这仍然无效。它仍会创建一个循环 - colorAccent
是alertDialogColorAccent
&amp; alertDialogColorAccent
是colorAccent
。在链的某处,需要设置实际颜色值:
<style name="AppTheme" parent="@style/Theme.AppCompat">
<item name="colorAccent">#FF9800</item>
<item name="alertDialogColorAccent" >#FF9800</item>
<item name="android:alertDialogTheme">@style/AlertDialogTheme</item>
</style>
现在,您可以使用colorAccent
初始化alertDialogColorAccent
,因为它引用了实际的颜色值:
<style name="AlertDialogTheme" parent="android:Theme.Material.Dialog.Alert">
<item name="colorAccent">?attr/alertDialogColorAccent</item>
</style>
答案 1 :(得分:1)
基于@Vikram的优秀答案,我最终得到了这个(我将其用于将来参考,以防有人对实际解决方案感兴趣)。
对于基本样式文件,在values
中(注意:属性,颜色和&amp; c的不同XML文件最好 - 它们在这里一起用于紧凑性):< / p>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="BaseAppTheme" parent="Theme.AppCompat.Light.DarkActionBar" />
<attr name="dialogColorAccent" />
<color name="myAccentColor">#FF9800</color>
<style name="AppTheme" parent="BaseAppTheme">
<item name="dialogTheme">@style/DialogTheme</item>
<item name="alertDialogTheme">@style/AlertDialogTheme</item>
<item name="colorAccent">@color/myAccentColor</item>
<item name="dialogColorAccent">@color/myAccentColor</item>
</style>
<style name="DialogTheme" parent="Theme.AppCompat.Light.Dialog">
<item name="colorAccent">?attr/dialogColorAccent</item>
</style>
<style name="AlertDialogTheme" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="colorAccent">?attr/dialogColorAccent</item>
</style>
</resources>
新的dialogColorAccent
属性是必需的,以便可以从对话框样式中引用它。不幸的是,它不能引用colorAccent
本身(并且两者都不可能相反),因此两者必须具有相同的值(在这种情况下,是对颜色资源的引用)。
这可确保使用android.support.v7.app.AlertDialog.Builder
构建的AlertDialog使用所有Android版本的正/负按钮的强调色。
但是,某些对话框(例如DatePickerDialog
,TimePickerDialog
和ProgressDialog
)需要一个额外的文件,这些对话框在Lollipop中具有材质版本但到目前为止还没有相同的AppCompat。因此,以下样式文件进入values-v21
:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="BaseAppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:dialogTheme">@style/DialogTheme</item>
</style>
</resources>
这将使这些新对话框也具有强调色(但显然只在Lollipop中)。
解决方案可能看起来有点复杂(从@myAccentColor
样式引用AlertDialogTheme
更简单:))但这是必要的,因为在库中定义了多个主题,并且想法是这些主题可以继承并使用,只需要很少的更改。
答案 2 :(得分:0)
我相信?attr/colorAccent
在这里指的是你想要设置的那个:
<item name="colorAccent">?attr/colorAccent</item>
您可以将重音颜色提取到@color
属性,然后将其用于应用主题和对话框主题。
<强> colors.xml 强>
<color name="accent">#FF9800</color>
<强> styles.xml 强>
<style name="AppTheme" parent="Theme.AppCompat">
<item name="colorAccent">@color/accent</item>
<item name="alertDialogTheme">@style/AlertDialogTheme</item>
</style>
<style name="AlertDialogTheme" parent="Theme.AppCompat.Dialog.Alert">
<item name="colorAccent">@color/accent</item>
</style>
答案 3 :(得分:0)
我在对话框主题中将android:textColor
设置为@null
,这很有帮助。
styles.xml
<style name="AlertDialogTheme" parent="@style/Theme.AppCompat.Light.Dialog.Alert">
<!-- Used for the buttons -->
<item name="colorAccent">@color/colorAccent</item>
<item name="android:textColor">@null</item>
</style>
这个trick
还能帮助我解决其他按钮的android:textColor
问题。
<style name="Button.Base.Borderless" parent="Widget.AppCompat.Button.Borderless.Colored">
<item name="android:textColor">@null</item>
</style>
some_layout.xml
<Button
style="@style/Button.Base.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hint" />
现在在colorAccent
中定义的按钮文字颜色为AppTheme
<style name="AppTheme" parent="@style/Theme.AppCompat.Light.NoActionBar">
<item name="colorAccent">@color/colorAccent</item>
<item name="borderlessButtonStyle">@style/Button.Base.Borderless</item>
<item name="alertDialogTheme">@style/AlertDialog</item>
</style>