二级联动代码实现 arrays.xml文件: 点击变颜色: <item android:color="@android:color/darker_gray" android:state_checked="false" /> <item android:color="@color/c_1E7FFF" ...
分类:
其他好文 时间:
2018-01-12 11:36:10
阅读次数:
159
在res下面新建drawable文件夹》新建radio_select.xml文件》 -<selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_checked="true" an ...
分类:
其他好文 时间:
2017-12-11 22:17:56
阅读次数:
196
今天在开发过程中遇到了两个小问题,因为在做树形结构展示,用的是bootstrap的treeview,在获取jsondata的时候有几点需要注意1)"pid":5,"id":4,"text":"xx"这三个属性是必须要获取到的,其中pid为父节点id,id为该条数据的id,text为你要显示的文本2)"state":{"checked":true..
分类:
其他好文 时间:
2017-03-25 21:16:30
阅读次数:
277
/** * 在res/drawable文件夹新增一个文件,此文件设置了图片的触发状态,你可以设置 state_pressed,state_checked,state_pressed, * state_selected,state_focused,state_enabled 等几个状态: * * an
分类:
其他好文 时间:
2016-02-21 12:53:36
阅读次数:
163
收藏按钮制作方法: 1 使用togglebutton 2 制定selector_like.xml 注意togglebutton对应的是state_checked属性 <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/a...
分类:
其他好文 时间:
2015-08-12 17:09:21
阅读次数:
135
可通过RadioButton 结合selector实现 通过android:state_checked值改变背景xml布局文件中关键代码: female_style.xml male_sytle.xml 参考: http://www.eoeandroid.com/forum.php...
分类:
移动开发 时间:
2015-03-18 15:19:10
阅读次数:
165
Android Selector全解我们默认大家都知道selector是什么那么
android:state_window_focused="true"
android:state_enabled="true"
android:state_checkable="true"
android:state_checked="true"
android:state_selected="t...
分类:
移动开发 时间:
2014-11-27 14:39:58
阅读次数:
317