Android 自定义SwitchPreference

news/2024/11/14 6:11:18/

1. 为SwitchPreference 添加背景:custom_preference_background.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"><item><shape android:shape="rectangle" ><gradient android:startColor="@color/white" android:endColor="@color/white" android:angle="90"/><corners android:radius="8dp"/></shape></item>
</selector>

2. 自定义 CustomSwitchPreference 继承自 witchPreference

public class CustomSwitchPreference extends SwitchPreference {public CustomSwitchPreference(Context context, AttributeSet attrs) {super(context, attrs);}public CustomSwitchPreference(Context context) {super(context);}//
....
//
}

3. 重载  onBindViewHolder, 实现自定义的效果, 如:设置背景、添加外边距、设置内边距、修改文字的颜色和字体等等:

    @Overridepublic void onBindViewHolder(PreferenceViewHolder holder) {super.onBindViewHolder(holder);//设置背景holder.itemView.setBackgroundResource(R.drawable.custom_preference_background);//设置内边距holder.itemView.setPadding(DensityUtils.dp2px(getContext(),20),DensityUtils.dp2px(getContext(),2),DensityUtils.dp2px(getContext(),20),DensityUtils.dp2px(getContext(),2));//设置外边距ViewGroup.MarginLayoutParams params = (ViewGroup.MarginLayoutParams)   holder.itemView.getLayoutParams();int textSize = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_PX, 18, getContext().getResources().getDisplayMetrics());params.topMargin = DensityUtils.dp2px(getContext(),5);params.bottomMargin = DensityUtils.dp2px(getContext(),5);params.leftMargin = DensityUtils.dp2px(getContext(),20);params.rightMargin = DensityUtils.dp2px(getContext(),20);holder.itemView.setLayoutParams(params);TextView titleView = holder.itemView.findViewById(android.R.id.title);titleView.setTextColor(Color.BLACK); // 这里设置为红色,你可以根据需要设置其他颜色TextView summaryView = holder.itemView.findViewById(android.R.id.summary);summaryView.setTextColor(Color.BLACK); // 设置为黑色}

完整代码如下:

public class CustomSwitchPreference extends SwitchPreference {public CustomSwitchPreference(Context context, AttributeSet attrs) {super(context, attrs);}public CustomSwitchPreference(Context context) {super(context);}@Overridepublic void onBindViewHolder(PreferenceViewHolder holder) {super.onBindViewHolder(holder);holder.itemView.setBackgroundResource(R.drawable.custom_preference_background);holder.itemView.setPadding(DensityUtils.dp2px(getContext(),20),DensityUtils.dp2px(getContext(),2),DensityUtils.dp2px(getContext(),20),DensityUtils.dp2px(getContext(),2));ViewGroup.MarginLayoutParams params = (ViewGroup.MarginLayoutParams)   holder.itemView.getLayoutParams();int textSize = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_PX, 18, getContext().getResources().getDisplayMetrics());params.topMargin = DensityUtils.dp2px(getContext(),5);params.bottomMargin = DensityUtils.dp2px(getContext(),5);params.leftMargin = DensityUtils.dp2px(getContext(),20);params.rightMargin = DensityUtils.dp2px(getContext(),20);holder.itemView.setLayoutParams(params);TextView titleView = holder.itemView.findViewById(android.R.id.title);titleView.setTextColor(Color.BLACK); // 这里设置为红色,你可以根据需要设置其他颜色TextView summaryView = holder.itemView.findViewById(android.R.id.summary);summaryView.setTextColor(Color.BLACK); // 设置为蓝色}
}

用法:

    <com.tetras.sensechat.wedgit.CustomSwitchPreferenceapp:defaultValue="true"app:iconSpaceReserved="false"app:key="key_continuous_switch"app:title="@string/text_continuous_switch" />

效果如图:


http://www.ppmy.cn/news/1426590.html

相关文章

社交媒体数据恢复:与你科技

在数字时代&#xff0c;数据是我们生活中的重要组成部分。无论是个人照片、文档&#xff0c;还是企业的重要资料&#xff0c;数据在我们的生活中扮演着举足轻重的角色。然而&#xff0c;数据丢失的问题时常发生&#xff0c;给我们带来了很多麻烦。幸运的是&#xff0c;当下众多…

HCIE-Shell实验1

要求&#xff1a; 判断当前磁盘剩余空间是否有20G&#xff0c;如果小于20G&#xff0c;则将报警邮件发送给管理员&#xff0c;每天检查一次磁盘剩余空间。判断web服务是否运行(1、査看进程的方式判断该程序是否运行&#xff0c;2、通过查看端口的方式判断该程序是否运行)&…

知识管理系统(KMS):一文扫盲,能和chatGPT相融吗?

一、什么是KMS&#xff0c;有什么作用 KMS&#xff08;Knowledge Management System&#xff09;知识管理系统是一种用于组织、存储、共享和利用知识的软件系统或平台。它旨在帮助组织有效地管理和利用内部和外部的知识资源&#xff0c;以支持决策、创新和持续学习。 KMS知识管…

MySQL 列数据跨表拷贝,一句SQL快速将表A每条记录的某些字段拷贝到表B每条记录的某些字段(A、B表通过ID等字段对应)

文章目录 MySQL 列数据跨表拷贝&#xff0c;一句SQL快速将表A每条记录的某些字段拷贝到表B每条记录的某些字段&#xff08;A、B表通过ID等字段对应&#xff09;背景定义表填充测试数据跨表一 一对应拷贝列数据SQL参考资料 MySQL 列数据跨表拷贝&#xff0c;一句SQL快速将表A每条…

js-利用blur使文本框自动控制格式

在 JavaScript 中&#xff0c;blur 是一个事件&#xff0c;它在一个元素失去焦点时触发。当用户从一个元素中移开或者将焦点转移到页面上的另一个元素时&#xff0c;该元素将触发 blur 事件。这个事件通常用于验证用户输入或执行其他与用户交互相关的操作。 假设我有个文本框&…

Day13-C++基础之文件操作

文件操作 #include<iostream> #include<fstream> #include<string> using namespace std; ​ class Person{ public:char m_Name[64];int m_Age; }; ​ int main(){//文本文件操作 ​//写文件//1.包含头文件 fstream//2.创建流对象ofstream ofs;//3.指定打开…

中科院JCR期刊分区介绍

文章目录 1. 背景2. 简介3. 学科分类方法4. 分区表计算方法5. 分区指标说明5.1 IF5.2 3年平均IF5.3 CI 6. 中科院分区和JCR期刊分区有哪些异同&#xff1f;6.1 数据基础相同6.2 学科划分小类部分相同 1. 背景 SCI作为论文与引文分析的重要手段, 被国内各级科研管理部门所重视,…

Day31代码随想录贪心part01:455.分发饼干、376. 摆动序列(也可以动态规划)、53. 最大子序和(也可以动态规划)

Day31 贪心part01 455.分发饼干 题意&#xff1a;对每个孩子 i&#xff0c;都有一个胃口值 g[i]&#xff0c;这是能让孩子们满足胃口的饼干的最小尺寸&#xff1b;并且每块饼干 j&#xff0c;都有一个尺寸 s[j] 。如果 s[j] > g[i]&#xff0c;我们可以将这个饼干 j 分配给…