书史足自悦,安用勤与劬。这篇文章主要讲述Android之自己定义checkbox样式相关的知识,希望能为你提供帮助。
大部分情况下,我们在UI中并不採用android自带的checkbox复选框样式,这时候就须要我们自己定义自己的checkbox。
首先找两张checkbox背景图片。比方下图样子的:
文章图片
【Android之自己定义checkbox样式】
然后在drawable文件夹下定义一个背景图片xml文件,内容例如以下:
< ?xml version="1.0" encoding="utf-8"?> < selector xmlns:android="http://schemas.android.com/apk/res/android"> < item android:state_checked="true" android:drawable="@drawable/fuxuan_input01" /> < item android:state_selected="true" android:drawable="@drawable/fuxuan_input01"> < /item> < item android:state_pressed="true" android:drawable="@drawable/fuxuan_input01"> < /item> < item android:state_checked="false" android:drawable="@drawable/fuxuan_input02" /> < /selector>
在须要用到checkbox的地方定义它。属性设置例如以下代码所看到的:
< CheckBox android:id="@+id/agree_provision_chk" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/chk_agee_provision_background" android:button="@null" />
自己定义checkbox就此完毕,效果例如以下图所看到的:
文章图片
推荐阅读
- 安卓手机软件測试耗电量
- Android蓝牙开发
- Charles 查看https请求数据 Mac/ android
- 怎样通过Html网页调用本地安卓app
- An internal error occurred during: &quot;J2EE Component Mapping Update&quot;.
- AndroidActivity间动画跳转
- Android 开发 Tip 6 -- Spinner
- Android在项目中接入腾讯TBS浏览器WebView的教程与注意的地方
- Android 成功 使用GPS获取当前地理位置(解决getLastKnownLocation 返回 null)