Android UI系列-----CheckBox和RadioButton(1)
主要记录一下CheckBox多选框和RadioGroup、RadioButton单选框的设置以及注册监听器
1.CheckBox
布局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="vertical"
tools:context=".MainActivity" > <CheckBox
android:id="@+id/eatId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="吃饭"/> <CheckBox
android:id="@+id/sleepId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="睡觉"/> <CheckBox
android:id="@+id/playId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="玩游戏"/> <CheckBox
android:id="@+id/allId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="全选"/> </LinearLayout>
MainActivity:
public class MainActivity extends Activity
{
private CheckBox eatBox;
private CheckBox sleepBox;
private CheckBox playBox;
private CheckBox allBox; @Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); eatBox = (CheckBox) findViewById(R.id.eatId);
sleepBox = (CheckBox) findViewById(R.id.sleepId);
playBox = (CheckBox) findViewById(R.id.playId);
allBox = (CheckBox) findViewById(R.id.allId); // OnBoxClickListener listener = new OnBoxClickListener();
// OnBoxCheckedListener listener2 = new OnBoxCheckedListener();
CheckedBoxListener listener3 = new CheckedBoxListener();
// eatBox.setOnClickListener(listener);
// sleepBox.setOnClickListener(listener);
// playBox.setOnClickListener(listener); eatBox.setOnCheckedChangeListener(listener3);
sleepBox.setOnCheckedChangeListener(listener3);
playBox.setOnCheckedChangeListener(listener3); allBox.setOnCheckedChangeListener(new OnCheckedChangeListener()
{
@Override
public void onCheckedChanged(CompoundButton buttonView,
boolean isChecked)
{
eatBox.setChecked(isChecked);
sleepBox.setChecked(isChecked);
playBox.setChecked(isChecked);
}
});
} class CheckedBoxListener implements OnCheckedChangeListener
{
private int count = 0; @Override
public void onCheckedChanged(CompoundButton buttonView,
boolean isChecked)
{
if (isChecked)
{
count++;
if (count == 3)
{
allBox.setChecked(isChecked);
}
}
else
{
count--;
allBox.setChecked(isChecked);
}
}
} @Override
public boolean onCreateOptionsMenu(Menu menu)
{
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
} // CheckBox点击监听器
class OnBoxClickListener implements OnClickListener
{
@Override
public void onClick(View view)
{
CheckBox box = (CheckBox) view;
if (box.getId() == R.id.eatId)
{
System.out.println("eatBox");
} else if (box.getId() == R.id.sleepId)
{
System.out.println("sleepBox");
} else if (box.getId() == R.id.playId)
{
System.out.println("playBox");
}
if (box.isChecked())
{
System.out.println("Box is checked");
} else
{
System.out.println("Box is unChecked");
}
System.out.println("CheckBox is clicked!");
}
} // CheckBox状态改变监听器
class OnBoxCheckedListener implements OnCheckedChangeListener
{
@Override
public void onCheckedChanged(CompoundButton buttonView,
boolean isChecked)
{
CheckBox box = (CheckBox) buttonView;
if (box.getId() == R.id.eatId)
{
System.out.println("eatBox");
} else if (box.getId() == R.id.sleepId)
{
System.out.println("sleepBox");
} else if (box.getId() == R.id.playId)
{
System.out.println("playBox");
}
if (isChecked)
{
System.out.println(box.getText() + " is checked!");
} else
{
System.out.println(box.getText() + " is unchecked!");
}
}
} }
2.RadioGroup和RadioButton
RadioGroup中可以放置多个RadioButton单选框,位于同一RadioGroup中的RadioButton每次只能选择一个
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" > <RadioGroup
android:id="@+id/radioGroupId1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"> <RadioButton
android:id="@+id/femailButtonId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="女"/> <RadioButton
android:id="@+id/maleButtonId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="男"/>
</RadioGroup> <RadioGroup
android:id="@+id/raidoGroupId2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioButton
android:id="@+id/womenButtonId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="women"/>
<RadioButton
android:id="@+id/manButtonId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="man"/>
</RadioGroup> </LinearLayout>
MainActivity:
public class MainActivity extends Activity
{
private RadioGroup radioGroup;
private RadioButton femaleRadio;
private RadioButton maleRadio;
private RadioGroup radioGroup2;
private RadioButton womenRadio;
private RadioButton manRadio;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); radioGroup = (RadioGroup)findViewById(R.id.radioGroupId1);
femaleRadio = (RadioButton)findViewById(R.id.femailButtonId);
maleRadio = (RadioButton)findViewById(R.id.maleButtonId);
radioGroup2 = (RadioGroup)findViewById(R.id.raidoGroupId2);
womenRadio = (RadioButton)findViewById(R.id.womenButtonId);
manRadio = (RadioButton)findViewById(R.id.manButtonId); RadioGroupListener listener = new RadioGroupListener();
radioGroup.setOnCheckedChangeListener(listener);
radioGroup2.setOnCheckedChangeListener(listener);
} class RadioGroupListener implements OnCheckedChangeListener
{
@Override
public void onCheckedChanged(RadioGroup group, int checkedId)
{
if(checkedId == femaleRadio.getId() || checkedId == womenRadio.getId())
{
womenRadio.setChecked(true);
femaleRadio.setChecked(true);
System.out.println("femaleRadio is cheched!");
}
else if(checkedId == maleRadio.getId() || checkedId == manRadio.getId())
{
manRadio.setChecked(true);
maleRadio.setChecked(true);
System.out.println("maleRadio is checked!");
}
}
} class RadioButtonListener implements android.widget.CompoundButton.OnCheckedChangeListener
{
@Override
public void onCheckedChanged(CompoundButton buttonView,
boolean isChecked)
{
if(isChecked)
{
System.out.println("RadioButton is checked!");
}
}
} @Override
public boolean onCreateOptionsMenu(Menu menu)
{
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
} }
注意:我们可以给RadioGroup注册一个OnCheckedChangeListener,引用的是android.widget.RadioGroup.OnCheckedChangeListener这个包下的监听器,其里面的方法是:
// group表示当前选中的这一组的RadioGroup对象,checkId表示的是当前这组中选中的那个单选框的ID
public void onCheckedChanged(RadioGroup group, int checkedId)
{
if(checkedId == femaleRadio.getId() || checkedId == womenRadio.getId())
{
womenRadio.setChecked(true);
femaleRadio.setChecked(true);
System.out.println("femaleRadio is cheched!");
}
else if(checkedId == maleRadio.getId() || checkedId == manRadio.getId())
{
manRadio.setChecked(true);
maleRadio.setChecked(true);
System.out.println("maleRadio is checked!");
}
}
而我们还可以给每个RadioButton注册一个OnCheckedChangeListener,但是这里就要使用 android.widget.CompoundButton.OnCheckedChangeListener 这个监听器类,其里面的方法:
// buttonView表示的就是当前调用这个方法的那个RadioButton对象,isChecked表示当前是否为选择
public void onCheckedChanged(CompoundButton buttonView,
boolean isChecked)
{
if(isChecked)
{
System.out.println("RadioButton is checked!");
}
}
Android UI系列-----CheckBox和RadioButton(1)的更多相关文章
- Android UI系列-----时间、日期、Toasts和进度条Dialog
您可以通过点击 右下角 的按钮 来对文章内容作出评价, 也可以通过左下方的 关注按钮 来关注我的博客的最新动态. 如果文章内容对您有帮助, 不要忘记点击右下角的 推荐按钮 来支持一下哦 如果您对文章内 ...
- 【转】Android UI系列-----时间、日期、Toasts和进度条Dialog
原文网址:http://www.cnblogs.com/xiaoluo501395377/p/3421727.html 您可以通过点击 右下角 的按钮 来对文章内容作出评价, 也可以通过左下方的 关注 ...
- Android中的checkbox和RadioButton的区别
1.单个RadioButton在选中后,通过点击无法变为未选中 单个CheckBox在选中后,通过点击可以变为未选中 2.一组RadioButton,只能同时选中一个 一组Che ...
- Android UI系列-----RelativeLayout的相关属性
本篇随笔将主要记录一些RelatieLayout的相关属性,并将猜拳游戏通过RelativeLayout实现出来 RelativeLayout的几组属性 第一组属性:android:layout_be ...
- Android UI系列-----LinearLayout的综合使用
这里将会对LinearLayout的布局方式进行一个综合的使用,通过一个例子来看看LinearLayout的嵌套布局方式,在这之前首先介绍三个属性: 1.①android:layout_weigth: ...
- Android UI系列-----ScrollView和HorizontalScrollView
本篇随笔将讲解一下Android当中比较常用的两个布局容器--ScrollView和HorizontalScrollView,从字面意义上来看也是非常的简单的,ScrollView就是一个可以滚动的V ...
- Android UI系列-----Dialog对话框
您可以通过点击 右下角 的按钮 来对文章内容作出评价, 也可以通过左下方的 关注按钮 来关注我的博客的最新动态. 如果文章内容对您有帮助, 不要忘记点击右下角的 推荐按钮 来支持一下哦 如果您对文章内 ...
- Android UI系列-----EditText和AutoCompleteTextView
在这篇随笔里将主要讲解一下EditText和AutoCompleteTextView这个控件 1.EditText 首先我们先简单来说说EditText这个控件,这个就相当于我们平常web开发中的文本 ...
- Android UI系列--对话框(一)(AlertDialog,TimePickerDialog,DatePickerDialog,ProgressDialog)
一.Dialog介绍 dialog就是一个在屏幕上弹出一个可以让用户做出一个选择,或者输入额外的信息的对话框,一个对话框并不会沾满我们整个的屏幕,并且通常用于模型事件当中需要用户做出一个决定后才会继续 ...
随机推荐
- L3-020 至多删三个字符 (30 分) 线性dp
给定一个全部由小写英文字母组成的字符串,允许你至多删掉其中 3 个字符,结果可能有多少种不同的字符串? 输入格式: 输入在一行中给出全部由小写英文字母组成的.长度在区间 [4, 1] 内的字符串. 输 ...
- 【noip模拟赛5】细菌
描述 近期,农场出现了D(1<=D<=15)种细菌.John要从他的 N(1<=N<=1,000)头奶牛中尽可能多地选些产奶.但是如果选中的奶牛携带了超过 K (1<=K ...
- 061 hive中的三种join与数据倾斜
一:hive中的三种join 1.map join 应用场景:小表join大表 一:设置mapjoin的方式: )如果有一张表是小表,小表将自动执行map join. 默认是true. <pro ...
- HDU1211 密文解锁 【扩展欧几里得】【逆元】
<题目链接> <转载于 >>> > 题目大意: RSA是个很强大的加密数据的工具,对RSA系统的描述如下: 选择两个大素数p.q,计算n = p * q,F( ...
- Springboot 2.0.x 引入链路跟踪Sleuth及Zipkin
Zipkin是一种分布式跟踪系统,它有助于收集解决微服务架构中得延迟问题所需的时序数据,它管理这些数据的收集和查找. 1. 架构概述 跟踪器存在于您的应用程序中,并记录有关发生的操作的时间和元数据.他 ...
- C#:几种数据库的大数据批量插入(转)
在之前只知道SqlServer支持数据批量插入,殊不知道Oracle.SQLite和MySql也是支持的,不过Oracle需要使用Orace.DataAccess驱动,今天就贴出几种数据库的批量插入解 ...
- VMware虚拟机安装CentOS6.4、部署web项目全过程(设置固定IP、安装JDK、Tomcat、Redis、部署项目)
概述:该篇随笔介绍了在VMware上安装centOS.在centOS上安装JDK.安装Tomcat.安装Redis并部署项目的全过程,虽然参考了很多优秀的文章,但实践.整理.补充都很用心,若要复制粘贴 ...
- 洛谷.4008.[NOI2003]editor文本编辑器(块状链表)
题目链接 st(n)表示sqrt(n) 为使块状链表不会退化,通常将每块的大小S维持在[st(n)/2,2st(n)]中,这样块数C也一定[st(n)/2,2st(n)]中 在此使用另一种方法(方便) ...
- 8.6 正睿暑期集训营 Day3
目录 2018.8.6 正睿暑期集训营 Day3 A 亵渎(DP) B 绕口令(KMP) C 最远点(LCT) 考试代码 A B C 2018.8.6 正睿暑期集训营 Day3 时间:5h(实际) 期 ...
- struts2中的session、request 、和action往页面中传值的方法
ActionContext.getContext().put("list", list); ActionContext.getContext().getValueStack().p ...