公司最近项目需求是用实体键来在应用内操作,这就需要对那些可点击的widget的背景进行自定义,使其响应focus状态随即变化。大部分的layout改动都是挺简单的。
但是遇到一个主要的问题就是自带的PreferenceFragment,里面的layout不是通过平时常用的Button ImageView那些来写的,而是在res/xml文件夹下的一个xml文件,里面的item都是类似ListPreference、CheckBoxPreference这些,而里面的属性不像平常的widget一样可定制,因此需要一些不一样的方法。
废话不多说,这篇文章讲的主要内容就是对点击ListPreference后弹出的Dialog内的可点击控件背景进行自定义。
首先,这是默认效果:
然后如果想改变这内部的layout,我翻阅过网上很多的文章,其中有一篇感觉靠谱:感觉靠谱的文章
里面提到想自定义这个Dialog里的layout,就是重写PreferenceFragmentCompat里的onDisplayPreferenceDialog方法,修改show的那个Dialog,因为我用的就是PreferenceFragmentCompat,所以如果用的是不同的父载体可能不同。
正当我准备这样去重写一个Dialog时,我感觉事情可能更简单,因此我就再看了一下这个源码,发现他弹出的其实就是一个AlertDialog,那岂不是在style里自定义AlertDialog的样式就行?
二话不说马上开干,就继承了其中一个Dialog的样式然后修改里面对应的几个值:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="alertDialogTheme">@style/CustomAlertDialogTheme</item>
</style>
<style name="CustomAlertDialogTheme" parent="Theme.AppCompat.Light.Dialog">
<item name="android:windowBackground">@drawable/bg_round_rectangle</item>
<item name="android:listChoiceBackgroundIndicator">@drawable/background_focus_test</item>
<item name="buttonBarButtonStyle">@style/CustomButtonStyle</item>
</style>
<style name="CustomButtonStyle">
<item name="android:background">@drawable/background_focus_test</item>
</style>
android:listChoiceBackgroundIndicator
是ListView的item背景buttonBarButtonStyle
可以自定义最底下的确定、取消按钮的样式
但是修改buttonStyle
是不起效的喔,试过了,所以记得要改buttonBarButtonStyle
。
效果如下:
就是这么简单。
但其实在实现这个效果前还是走了不少弯路,因为是PreferenceActivity所以一开始以为是要修改preferenceTheme的样式,但是对弹出的Dialogue一直不起作用,反正就是在反复地试错。但是网上没有相关的文章或者提出的需求,只能自己慢慢琢磨。
希望有类似需求的各位能少走些弯路。