Android控件RadioButton的使用方法

 更新时间:2021年05月12日 10:48:38   作者:紧张的无痕  
这篇文章主要为大家详细介绍了Android控件RadioButton的使用方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Android控件RadioButton的使用代码,供大家参考,具体内容如下

内容

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".RadioActivity">
    <RadioGroup //定义一个单选按钮组
        android:id="@+id/rg_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <RadioButton //单选按钮一 使用默认样式
            android:id="@+id/rb_1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:checked="true"
            android:text="男"
            android:textSize="24sp"
            android:textColor="@color/black"/>
        <RadioButton //单选按钮2 使用默认样式
            android:id="@+id/rb_2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="女"
            android:textSize="24sp"
            android:textColor="@color/black"/>
    </RadioGroup>
    <RadioGroup //组2
        android:id="@+id/rg_2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_below="@id/rg_1"
        android:layout_marginTop="50dp">
        <RadioButton
            android:layout_width="50dp"
            android:layout_height="wrap_content"
            android:text="男"
            android:button="@null" //无按钮样式
            android:textSize="24sp"
            android:background="@drawable/selector_radiobutton" //自定义背景
            android:textColor="@color/black"
            android:checked="true"
            android:gravity="center"/>
        <RadioButton
            android:layout_width="50dp"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:button="@null" //无按钮样式
            android:text="女"
            android:background="@drawable/selector_radiobutton" //自定义背景
            android:textSize="24sp"
            android:textColor="@color/black"/>
    </RadioGroup>
</RelativeLayout>

//selector_radiobutton.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_checked="true"> //单选被选中的样式
        <shape android:shape="rectangle">
            <solid android:color="#ff66ff"/>
            <corners android:radius="5dp"/>
        </shape>
    </item>
    <item android:state_checked="false"> //单选没被选中的样式
        <shape android:shape="rectangle">
            <stroke android:color="#cc33ff" android:width="2dp"/>
            <corners android:radius="5dp"/>
        </shape>
    </item>
</selector>
public class RadioActivity extends AppCompatActivity {
 
    private RadioGroup rg_1;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_radio);
        rg_1 = findViewById(R.id.rg_1);
        rg_1.setOnCheckedChangeListener((group, checkedId) -> {//设置组中单选按钮选中事件
            RadioButton radioButton = findViewById(checkedId);//获取被选中的id
            Toast.makeText(RadioActivity.this,radioButton.getText(),Toast.LENGTH_SHORT)
                    .show();//吐司一下被选中的文本值
        });
    }
}

运行效果

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

相关文章

  • 百度语音识别(Baidu Voice) Android studio版本详解

    百度语音识别(Baidu Voice) Android studio版本详解

    这篇文章主要介绍了百度语音识别(Baidu Voice) Android studio版本详解的相关资料,需要的朋友可以参考下
    2016-09-09
  • Android实现可使用自定义透明Dialog样式的Activity完整实例

    Android实现可使用自定义透明Dialog样式的Activity完整实例

    这篇文章主要介绍了Android实现可使用自定义透明Dialog样式的Activity,结合完整实例形式分析了Android Activity自定义style的操作步骤与相关技巧,需要的朋友可以参考下
    2016-07-07
  • Flow如何解决背压问题的方法详解

    Flow如何解决背压问题的方法详解

    这篇文章主要为大家介绍了Flow如何解决背压问题的方法详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-11-11
  • Flutter实现矩形取色器的封装

    Flutter实现矩形取色器的封装

    这篇文章主要为大家详细介绍了Flutter实现矩形取色器的封装,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-08-08
  • Android开发实现的内存管理工具类

    Android开发实现的内存管理工具类

    这篇文章主要介绍了Android开发实现的内存管理工具类,可实现计算手机内部与外部的总存储空间、可用存储空间等功能,需要的朋友可以参考下
    2017-11-11
  • Android转场动画深入分析探究

    Android转场动画深入分析探究

    对于一个动画而言,它是由多个分镜头组成的,而转场就是分镜之间衔接方式。转场的主要目的,就是为了让镜头与镜头之间过渡的更加自然,让动画更加连贯,例如两个页面切换之间的衔接动画
    2022-10-10
  • Android 自定义圆形带刻度渐变色的进度条样式实例代码

    Android 自定义圆形带刻度渐变色的进度条样式实例代码

    这篇文章主要介绍了Android 自定义圆形带刻度渐变色的进度条的实例代码,非常不错,具有参考借鉴价值,需要的朋友可以参考下
    2016-11-11
  • Android 本地广播和强制下线功能的实现代码

    Android 本地广播和强制下线功能的实现代码

    这篇文章主要介绍了Android 本地广播和强制下线功能的实现代码,本文通过示例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2020-07-07
  • 一文讲解Kotlin中的contract到底有什么用

    一文讲解Kotlin中的contract到底有什么用

    我们在开发中肯定会经常用Kotlin提供的一些通用拓展函数,当我们进去看源码的时候会发现许多函数里面有contract{}包裹的代码块,那么这些代码块到底有什么作用呢?下面这篇文章主要给大家介绍了关于Kotlin中contract到底有什么用的相关资料,需要的朋友可以参考下
    2022-01-01
  • Android控件RecyclerView实现混排效果仿网易云音乐

    Android控件RecyclerView实现混排效果仿网易云音乐

    这篇文章主要为大家详细介绍了Android控件RecyclerView实现混排效果,仿网易云音乐,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-10-10

最新评论