码迷,mamicode.com
首页 > 移动开发 > 详细

Android-ToggleButton&CheckTextView&CheckBox

时间:2015-06-09 10:07:10      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:android   控件   

Android-ToggleButton&CheckTextView&CheckBox
一 定义
ToggleButton:单个选择框
就是类似于选择开关的按钮


CheckBox:复选框
与ToggleButton功能类似,实现方法类似


CheckTextView:点击文本后选中,
与CheckBox功能类似,时间机制也相同


二 使用方法
1 xml文件中定义ToggleButton控件,设置默认的属性,例如textOn和textOff
 <ToggleButton
        android:id="@+id/toggleButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/textView"
        android:layout_below="@+id/button3"
        android:textOn="close"
        android:textOff="open"
        android:background="@drawable/button5"
        android:text="ToggleButton" />
2 源文件中调用,和设置监听:mtoggleButton.setOnCheckedChangeListener


三 自定义实现
1 代码实现:
private void showToggleButton()
{
mtoggleButton = (ToggleButton)findViewById(R.id.toggleButton1);
mtoggleButton.setOnCheckedChangeListener(new OnCheckedChangeListener()
{

@Override
public void onCheckedChanged(CompoundButton arg0, boolean arg1)
{
// TODO Auto-generated method stub
if (arg1)
{
mtoggleButton.setBackgroundResource(R.drawable.button5);//改变按钮的背景为button5
Log.i("chengzhi log", "open");
}
else
{
mtoggleButton.setBackgroundResource(R.drawable.button6)//改变按钮的背景为button6
Log.i("chengzhi log", "close");

}
}
});


2 xml文件实现:
<item android:state_checked="true" android:drawable="@drawable/button5"></item>开关为true,改变按钮的背景为button5
<item android:state_checked="false" android:drawable="@drawable/button6"></item>开关为false,改变按钮的背景为button6

Android-ToggleButton&CheckTextView&CheckBox

标签:android   控件   

原文地址:http://blog.csdn.net/qq_22075977/article/details/46417943

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!