其他分享
首页 > 其他分享> > android – 更改DatePicker标题文本颜色

android – 更改DatePicker标题文本颜色

作者:互联网

我有一个在Lollipop上显示标题的日期选择器,它看起来像这样
Datepicker

我想要将标题中大日期的颜色从黑色更改为白色,或者完全删除标题,我不在乎哪个.我试过更改textColorPrimary,textColor和titleTextColor但它没有效果.

解决方法:

好吧,我不知道你的日期选择器主题的主题是什么.假设您的日期选择器有自定义主题,如下所示,

 <style name="yourCustomStyle" parent="Theme.AppCompat.Light">

现在按住Ctrl键点击Theme.AppCompat.Light,它会引导你找到一种新的方式;)你可以找到你想要的东西,这里你的问题只是关于头文本,但你可能希望改变另一种视图颜色,这就是你需要看看.

并且当答案创建如下所示的自定义主题时,并使用您喜欢的颜色添加此属性

机器人:textColorPrimaryInverse

应该为你做的伎俩.

   <style name="yourCustomStyle" parent="Theme.AppCompat.Light">
        <item name="colorAccent">@color/blue</item>
        <item name="android:textColorPrimaryInverse">@color/yellow</item>
        .. other
    </style>

随意使用您自己的颜色和代码(我从this复制代码),它将完成这项工作!

new DatePickerDialog(MainActivity.this, R.style.yourCustomStyle, new DatePickerDialog.OnDateSetListener() {
    @Override
    public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) {

    }
}, 2015, 02, 26).show();

enter image description here
enter image description here

图片:android:textColorPrimaryInverse with Theme.AppCompat.Dialog

标签:android,android-styles,datepicker,datepickerdialog
来源: https://codeday.me/bug/20190611/1217975.html