服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - android开发教程之自定义控件checkbox的样式示例

android开发教程之自定义控件checkbox的样式示例

2021-02-27 15:45Android开发网 Android

这篇文章主要介绍了android自定义checkbox的样式示例,需要的朋友可以参考下

主界面xml文件

 

复制代码 代码如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <CheckBox
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:button="@drawable/check_selector"
        android:checked="true" />
</RelativeLayout>

 

/res/drawable-hdpi/check_selector.xml

 

复制代码 代码如下:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/checkok" android:state_checked="true"></item>
    <item android:drawable="@drawable/checkno" android:state_checked="false"></item>
</selector>

 

P.S:重点: android:button="@drawable/check_selector"

check_selector.xml中的checkok为CheckBox选中状态的图片,checkno为CheckBox未选中状态的图片.

延伸 · 阅读

精彩推荐