亲宝软件园·资讯

展开

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

人气:0
想了解android开发教程之自定义控件checkbox的样式示例的相关内容吗,在本文为您仔细讲解自定义checkbox样式的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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未选中状态的图片.

加载全部内容

相关教程
猜你喜欢
用户评论