源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

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

  • 时间:2020-07-14 17:57 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:android开发教程之自定义控件checkbox的样式示例
主界面xml文件
[u]复制代码[/u] 代码如下:
<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
[u]复制代码[/u] 代码如下:
<?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未选中状态的图片.
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部