zoukankan      html  css  js  c++  java
  • 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未选中状态的图片.

  • 相关阅读:
    第五章课后练习题
    第四章课后练习
    函数
    变量、常量及类型
    go环境搭建及编辑器安装
    Matplotlib(绘图和可视化)
    Pandas例题(以NBA球队为例)
    Pandas
    Numpy
    jupyter notebook编辑器的用法
  • 原文地址:https://www.cnblogs.com/afluy/p/3472452.html
Copyright © 2011-2022 走看看