zoukankan      html  css  js  c++  java
  • [Android实例] 更改CheckBox的样式

    首先在styles.xml添加如下的自定义样式:

    1.         <style name="mycheckbox" parent="@android:style/Widget.CompoundButton.CheckBox">
    2.         <item name="android:button">@drawable/my_checkbox</item>
    3.         </style>
    复制代码

    my_checkbox.xml的内容为:

    1. <?xml version="1.0" encoding="utf-8"?>
    2. <selector xmlns:android="http://schemas.android.com/apk/res/android">
    3.         <item android:state_checked="true" android:drawable="@drawable/checkbox_pressed" />                                                                                        
    4.     <item android:state_checked="false" android:drawable="@drawable/checkbox" />
    5.      <item android:drawable="@drawable/checkbox" />                                                                                                
    6. </selector>
    复制代码

    使用自定义样式的代码段:

    1.                 <CheckBox
    2.                                 android:id="@+id/checked" 
    3.                                 android:layout_alignParentRight="true"
    4.                                 android:layout_marginRight="10dip"
    5.                                 android:layout_centerVertical="true"
    6.                                 android:layout_width="40dip" 
    7.                                 android:layout_height="wrap_content"
    8.                                 android:checked="false"
    9.                                 style="@style/mycheckbox" 
    10.                                 />
    复制代码

    添加两张图片checkbox_pressed.png、checkbox.png

    http://www.eoeandroid.com/forum.php?mod=viewthread&tid=148630

  • 相关阅读:
    python datetime,字符串,时间戳相互转换
    python在linux环境读取access数据库mdb文件
    ruby 随机字符串rand方法避坑
    gin 页面重定向
    go语言 goquery爬虫
    Rails项目防止时序攻击
    Authorization With Pundit
    Rails/ActiveRecord order by Array
    java线程池
    Java安全API
  • 原文地址:https://www.cnblogs.com/cmblogs/p/4389169.html
Copyright © 2011-2022 走看看