radiogroup
实现单选功能的控件
一组radiobutton必须放在一个radiogroup中
意思就是说单选按钮中的值我们可以看作是一个数组也就是这里说的这个数组是RadioGroup数组中的值是RadioButton,在这个数组中我们通常都有且只能选择一个值,而这个值是这个组中唯一的选择(如:男、女),而这里的RadioButton就是这里举例的男、女的意思。
RadioButton
常用属性:
Android:text 文字
android:checked 是否选中
常用方法:
boolean isChecked() 返回是否被选中
getText() 返回文字
setChecked(boolean checked) 设置是否选中
RadioGroup
常用属性:
android:orientation 方向
常用方法:
getCheckedRadioButtonId() 获得被选中的RadioButton的id
setOnCheckedChangeListener(OnCheckedChangeListener) 设置选中状态修改的监听
可以通过两个简单的方法来实现对性别的选择:
这里他们的页面布局是一样的(这里采用的是线性布局,当然也可以采用相对布局的方式,只是个人比较喜欢使用线性布局,这个主要是依据个人的喜欢)
<?xml version="1.0" encoding="utf-8"?>
<Linearlayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.adMinistrator.prictice.MainActivity">
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/sex_rg"
android:orientation="horizontal">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="男"
android:id="@+id/male_rb"/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="女"
android:id="@+id/famale_rb"/>
</RadioGroup>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="确定"
android:id="@+id/ok_bt"/>
</LinearLayout>
主要实现的代码:
方法一、直接使用.ischeck()进行判断它是否被选中
package com.example.administrator.prictice;
import android.support.v7.APP.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.toast;
public class MainActivity extends AppCompatActivity {
// 定义按钮对象
private RadioButton mMaleRb;
private RadioButton mFamaleRb;
private Button mOkBt;
@Override
protected void onCreate(Bundle savedinstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
}
private void initView() {
// 初始化按钮对象
mMaleRb = (RadioButton)findViewById(R.id.male_rb);
mFamaleRb = (RadioButton)findViewById(R.id.famale_rb);
mOkBt = (Button)findViewById(R.id.ok_bt);
// 给按钮对象设置监听器
mOkBt.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (mMaleRb.isChecked()){
toast.maketext(MainActivity.this,"性别是:男",Toast.LENGTH_SHORT).show();
}
if (mFamaleRb.isChecked()){
Toast.makeText(MainActivity.this,"性别是:女",Toast.LENGTH_SHORT).show();
}
}
});
}
}
方法二、使用getCheckedRadioButtonId() 来获得被选中的RadioButton的id,以此来获得所选择的性别
package com.example.administrator.prictice;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.RadioGroup;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
// 定义按钮对象
private RadioGroup mSexRg;
private Button mOkBt;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
}
private void initView() {
// 初始化按钮对象
mSexRg = (RadioGroup)findViewById(R.id.sex_rg);
mOkBt = (Button)findViewById(R.id.ok_bt);
// 给按钮对象设置监听器
mOkBt.setOnClickListener(new View.OnClickListener() {
int sex = mSexRg.getCheckedRadioButtonId();
@Override
public void onClick(View v) {
if (sex == R.id.male_rb){
Toast.makeText(MainActivity.this,"性别是:男",Toast.LENGTH_SHORT).show();
}
if (sex == R.id.famale_rb){
Toast.makeText(MainActivity.this,"性别是:女",Toast.LENGTH_SHORT).show();
}
}
});
}
}
这样你会发现点击确定的时候,系统会强制停止运行,这是什么原因呢,看日志我们会发现它提示我们的是空指针异常的问题,原因是什么呢,就是你使用.getCheckedRadioButtonId()来获得它的值的时候,我们并没有给它设置默认的值,所以才会报这个错误,解决的办法很简单,就是在页面布局的时候,
给它设置一个默认的初始值,可以是“男”也可以是“女”,我这里就把它默认设置为“男”,这样它的值就不会是空的
最终的结果如下:
总结:
两种方法都是实现对性别的选择,相对于来说,论代码的行数来说,第二种代码简洁很多,也不是很死板,第一种的话,比较好理解,也是比较常见的方法,但是我个人觉得这两种方法还存在一些不足,就是如果单选按钮组RadioGroup中如果有多个RadioButton的话,就要写和多个if语句,确实挺多余的,但是我想现实生活中应该还是很少存在这样的单选吧,所以,就暂时这样
相关阅读
android 自定义控件 使用declare-styleable进行配置属
http://blog.csdn.net/vipzjyno1/article/details/23696537最近在模仿今日头条,发现它的很多属性都是通过自定义控件并设定相关的
如何区分Android wrap_content和fill_parent的详细说
在Android中,总是把“wrap_content“或”fill_parent“组件属性”layout_width“和”layout_height“搞混?看看下面的定义:wrap_cont
Android Studio中match_parent和wrap_content的区别
Android中所有的控件都具有这两个属性,可选值有3种:match_parent、fill_parent、wrap_content. 其中match_parent和fill_parent的意
(七十)Android O Service启动流程梳理——bindService
前言:最近在处理anr问题的时候迫切需要搞清楚service的启动流程,抽时间梳理一下。1.service启动简述service启动分三种,比较简单的就
https://blog.csdn.net/libing1991_/article/details/53455243 前言 工作快一年,Android完全靠自学,看着那些基础教程一步步去做,