Android实现单选按钮

本文实例为大家分享了Android实现单选按钮的具体代码,供大家参考,具体内容如下

单选按钮

在默认情况下,单选按钮显示为一个圆形图标,可以在图标旁放一些说明文字。通常情况下RadioButton组件需要与RadioGroup组件一起使用,组成一个单选按钮组。RadioGroup是可以容纳多个RadioButton的容器。

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="60dp"
    android:orientation="horizontal">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:text="选择性别:"
        android:textSize="25sp"
        android:gravity="center"
        android:textColor="@color/black"/>

    <RadioGroup
        android:id="@+id/radioGroup"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"
        android:gravity="center">
        <RadioButton
            android:id="@+id/radio_man"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="男"
            android:textColor="@color/black"
            android:textSize="25sp"
            android:checked="true"/>

        <RadioButton
            android:id="@+id/radio_female"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="女"
            android:textColor="@color/black"
            android:layout_marginLeft="100dp"
            android:textSize="25sp"/>
    </RadioGroup>

</LinearLayout>

<Button
    android:id="@+id/bt_submit"
    android:layout_width="100dp"
    android:layout_height="50dp"
    android:text="提交"
    android:textSize="20sp"
    android:layout_marginTop="10dp"
    android:layout_gravity="center"/>

布局效果显示:

RadioButton组件的android:checked属性用来指定选中的状态,android:checked="true"时,表示选中;android:checked="false"时,表示取消选中。

获得选中的值有三种方法:

第一种是为RadioButton设置一个事件监听器setOnCheckChangeListener。

public class MainActivity extends AppCompatActivity {

    RadioGroup radioGroup;
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //初始化控件
        initView();
        //点击事件
        clickEvent();
    }

    private void initView() {
        radioGroup = findViewById(R.id.radioGroup);
    }

    private void clickEvent() {
        //给RadioGroup绑定监视器
        radioGroup.setOnCheckedChangeListener(new MyRadioButtonListener());
    }

    //单选按钮监听
    private class MyRadioButtonListener implements RadioGroup.OnCheckedChangeListener {
        @Override
        public void onCheckedChanged(RadioGroup group, int checkedId) {

            RadioButton r = (RadioButton) findViewById(checkedId);//获取被选中的Id
            Log.i("单选按钮监听", "选择性别为:" + r.getText().toString());
        }
    }
}

单选按钮监听日志效果:

第二种通过单击其他按钮获取选中单选按钮的值。

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

    RadioGroup radioGroup;
    //提交
    Button bt_submit;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //初始化控件
        initView();
        //点击事件
        clickEvent();
    }

    private void initView() {
        radioGroup = findViewById(R.id.radioGroup);
        bt_submit = findViewById(R.id.bt_submit);
    }

    private void clickEvent() {
        //提交
        bt_submit.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.bt_submit:
                for (int i = 0; i < radioGroup.getChildCount(); i++) {
                    RadioButton r = (RadioButton) radioGroup.getChildAt(i);
                    if (r.isChecked()) {
                        Log.i("单击其他按钮时获取", "选择性别为:" + r.getText());
                    }
                }
                break;
        }
    }
}

判断单击其他按钮获取选中单选按钮的值的日志效果展示:

第三种判断被点击的id是哪一个单选按钮的id,通过id去获取值。

public class MainActivity extends AppCompatActivity {

    RadioGroup radioGroup;
    //男
    RadioButton radio_man;
    //女
    RadioButton radio_female;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //初始化控件
        initView();
        //点击事件
        clickEvent();
    }

    private void initView() {
        radioGroup = findViewById(R.id.radioGroup);
        radio_man = findViewById(R.id.radio_man);
        radio_female = findViewById(R.id.radio_female);
    }

    private void clickEvent() {
        //给RadioGroup绑定监视器
        radioGroup.setOnCheckedChangeListener(new MyRadioButtonListener());
    }

    //单选按钮监听
    private class MyRadioButtonListener implements RadioGroup.OnCheckedChangeListener {
        @Override
        public void onCheckedChanged(RadioGroup group, int checkedId) {
            // 选中状态改变时被触发
            switch (checkedId) {
                case R.id.radio_female:
                    // 当用户选择女性时
                    Log.i("判断点击Id的单选按钮", "选择性别为:" + radio_female.getText().toString());
                    break;
                case R.id.radio_man:
                    // 当用户选择男性时
                    Log.i("判断点击Id的单选按钮", "选择性别为:"+radio_man.getText().toString());
                    break;
            }
        }
    }
}

判断点击的单选按钮日志效果展示:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Android单选按钮对话框用法实例分析

    本文实例讲述了Android单选按钮对话框用法.分享给大家供大家参考.具体如下: main.xml布局文件 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:l

  • Android studio实现单选按钮

    本文实例为大家分享了Android studio实现单选按钮的具体代码,供大家参考,具体内容如下 创建空activity编辑activity_main.xml文件 代码如下: <?xml version="1.0" encoding="utf-8"?> <androidx.appcompat.widget.LinearLayoutCompat     xmlns:android="http://schemas.android.com/ap

  • Android编程实现带有单选按钮和复选按钮的dialog功能示例

    本文实例讲述了Android编程实现带有单选按钮和复选按钮的dialog.分享给大家供大家参考,具体如下: 带有单选按钮的dialog: package example.com.myapplication; import android.app.Activity; import android.app.AlertDialog; import android.app.Dialog; import android.content.DialogInterface; import android.os.

  • Android ListView ImageView实现单选按钮实例

    做Android开发两年的时间,技术稍稍有一些提升,刚好把自己实现的功能写出来,记录一下,如果能帮助到同行的其他人,我也算是做了件好事,哈哈!!废话不多说,先上个图. 先上一段代码: 1 if (lastposition == position){ 2 viewHolder.setImageResource(R.id.iv_yuandian1,R.mipmap.ic_button_checked); 3 } else { 4 viewHolder.setImageResource(R.id.iv

  • Android单选按钮RadioButton的使用详解

    RadioButton是最普通的UI组件之一,继承了Button类,可以直接使用Button支持的各种属性和方法. RadioButton与普通按钮不同的是,它多了一个可以选中的功能,可额外指定一个android:checked属性,该属性可以指定初始状态时是否被选中,其实也可以不用指定,默认初始状态都不选中. 使用RadioButton必须和单选框RadioGroup一起使用,在RadioGroup中放置RadioButton,通过setOnCheckedChangeListener( )来响

  • android实现单选按钮功能

    在我们平时在注册个人信息的时候,经常会让我们选择是男生还是女生,那么这个单选框在Android中是怎么实现的呢?现在我们就来学习一下吧 首先我们要明白实现这样一个效果需要哪几部? 1.在layout布局文件中建立一个文件,我起的名字为activity_radio.xml 代码为: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schem

  • Android程序开发中单选按钮(RadioGroup)的使用详解

    在还没给大家介绍单选按钮(RadioGroup)的使用,先给大家展示下效果图吧: xml文件 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_heig

  • Android单选按钮RadioButton的使用方法

    单选按钮要在一组中选择一项,并且不能多选. 同一组RadioButton要放在同一个RadioGroup节点下. RadioButton默认未选中,点击后选中但是再次点击不会取消选中. RadioButton经常会更换按钮图标,如果通过button属性变更图标,那么图标与文字就会挨得很近.为了拉开图标与文字之间的距离,得换成drawableLeft属性展示新图标(不要忘记把button改为@null),再设置drawablePadding即可指定间隔距离. 复现代码时出现了一个错误,处理单选按钮

  • Android实现单选按钮

    本文实例为大家分享了Android实现单选按钮的具体代码,供大家参考,具体内容如下 单选按钮 在默认情况下,单选按钮显示为一个圆形图标,可以在图标旁放一些说明文字.通常情况下RadioButton组件需要与RadioGroup组件一起使用,组成一个单选按钮组.RadioGroup是可以容纳多个RadioButton的容器. <LinearLayout     android:layout_width="match_parent"     android:layout_height

  • Android RadioGroup和RadioButton控件简单用法示例

    本文实例讲述了Android RadioGroup和RadioButton控件简单用法.分享给大家供大家参考,具体如下: RadioGroup和RadioButton代表的是Android中单选按钮的一种控件,写个简单的代码熟悉一下: import android.app.Activity; import android.os.Bundle; import android.widget.RadioButton; import android.widget.RadioGroup; import a

  • Android 多种dialog的实现方法(推荐)

    要求:设计如下界面,包括图片按钮.复选按钮.单选按钮.普通按钮,单击按钮弹出对话框,运行效果如下: string.xml文件源代码: <resources> <string name="app_name">多种弹出对话框</string> <string name="dialog_img">图片按钮</string> <string name="dialog_radio">单

  • Android复选框CheckBox与开关按钮Switch及单选按钮RadioButton使用示例详解

    目录 前言 一.复选框CheckBox 二.开关按钮Switch 三.单选按钮RadioButton 单选组的用法 前言 CompoundButton在XML文件中主要使用下面两个属性. checked:指定按钮的勾选状态,true表示勾选,false则表示未勾选,默认为未勾选. button:指定左侧勾选图标的图形资源,如果不指定就使用系统的默认图标. CompoundButton在java代码中主要使用下列4种方法. setChecked:设置按钮的勾选状态. setButtonDrawab

随机推荐