Android开发单选按钮功能,Android单选按钮RadioButton的使用详解

RadioButton是最普通的UI组件之一,继承了Button类,可以直接使用Button支持的各种属性和方法。

RadioButton与普通按钮不同的是,它多了一个可以选中的功能,可额外指定一个android:checked属性,该属性可以指定初始状态时是否被选中,其实也可以不用指定,默认初始状态都不选中。

使用RadioButton必须和单选框RadioGroup一起使用,在RadioGroup中放置RadioButton,通过setOnCheckedChangeListener( )来响应按钮的事件;

(1)选用radioGroup的图标

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"

tools:context=".MainActivity" >

android:id="@+id/textView1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignParentLeft="true"

android:layout_alignParentTop="true"

android:layout_marginTop="44dp"

android:text="性别:"

android:textSize="20dp" />

android:id="@+id/radioGroup1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignTop="@+id/textView1"

android:layout_marginLeft="21dp"

android:layout_toRightOf="@+id/textView1"

android:orientation="horizontal" >

android:id="@+id/radio0"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:checked="true"

android:onClick="onRadioButtonClicked"

android:text="男" />

android:id="@+id/radio1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:onClick="onRadioButtonClicked"

android:text="女" />

android:id="@+id/radio2"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:onClick="onRadioButtonClicked"

android:text="保密" />

(2)控制的类是

package com.lc.radiobutton;

import com.example.radiobutton.R;

import android.os.Bundle;

import android.app.Activity;

import android.view.Menu;

import android.view.View;

import android.widget.RadioButton;

import android.widget.Toast;

public class MainActivity extends Activity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

}

/*

* 设置radio的点击事件,当点击的时候显示文字

*/

public void onRadioButtonClicked(View view) {

RadioButton button = (RadioButton) view;

boolean isChecked = button.isChecked();

switch (view.getId()) {

case R.id.radio0:

if (isChecked) {

Toast.makeText(MainActivity.this, button.getText(), 1).show();

}

break;

case R.id.radio1:

if (isChecked) {

Toast.makeText(MainActivity.this, button.getText(), 1).show();

}

break;

case R.id.radio2:

if (isChecked) {

Toast.makeText(MainActivity.this, button.getText(), 1).show();

}

break;

default:

break;

}

}

@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;

}

}

(3)显示结果,当点击的时候显示文字

57fc42a5f4a184ce6c7563cbfd2e4c09.png

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。如果你想了解更多相关内容请查看下面相关链接

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值