• [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

  • 相关阅读:
    50.Ext_数字输入框_Ext.form.NumberField
    49.Ext.form.TextField()基本用法
    48.EXt.Data.JsonReader()
    47. Ext.form.Field.prototype.msgTarget
    46. Ext中namespace的作用(转)
    45. ExtJS ComboBox 下拉列表详细用法
    44. Ext信息提示对话框
    43. ExtJs控件属性配置详细
    42.extjs Combobox动态加载数据问题,mode:local 还是remote
    堆叠顺序
  • 原文地址:https://www.cnblogs.com/cmblogs/p/4389169.html
Copyright © 2020-2023  润新知