Android(安卓)RadioGroup 控件

RadioGroup 类用于单选按钮集。

如果我们选中一个属于单选组的单选按钮,它会自动取消选中同一组中以前选中的任何单选按钮。


RadioGroup 属性

以下是与 RadioGroup 控制相关的重要属性。您可以查看 Android 官方文档,以获取完整的属性列表和可用于更改这些属性的相关方法。

属性描述
android:checkedButton这是默认情况下应在此单选组中选中的子单选按钮的 id

继承自 android.view.View 类:

编号属性 & 描述
1

android:background

一个可作为背景使用的绘图。

2

android:content描述

定义了简要描述视图内容的文本。

3

android:id

提供了此视图的标识符名称。

4

android:onClick

单击视图时要调用的此视图上下文中方法的名称。

5

android:visibility

控制视图的初始可见性。


实例

这个实例将带您完成简单的步骤,展示如何使用线性布局和 RadioGroup 创建自己的 Android 应用程序。

步骤描述
1您将使用 Android studio IDE 创建一个 Android 应用程序,并将其命名为 com.example.saira_000.myapplication 包下的 myapplication,如 Hello World 实例 一章所述。
2修改 src/MainActivity.java 文件添加点击事件。
3修改 res/layout/activity_main.xml 文件的默认内容来包含 Android UI 控件。
4无需声明默认常量 Android studio 负责 string.xml 中的默认常量
5运行应用程序以启动 Android 模拟器并验证应用程序中所做更改的结果。

以下是修改后的主活动文件 src/MainActivity.java 的内容。此文件可以包括每个基本生命周期方法。

在下面的实例中,abc 表示图像

  1. package com.example.saira_000.myapplication;
  2. import android.app.Activity;
  3. import android.support.v7.app.ActionBarActivity;
  4. import android.os.Bundle;
  5. import android.view.Menu;
  6. import android.view.MenuItem;
  7. import android.view.View;
  8. import android.widget.Button;
  9. import android.widget.RadioButton;
  10. import android.widget.RadioGroup;
  11. import android.widget.Toast;
  12. public class MainActivity extends Activity {
  13. private RadioGroup radioSexGroup;
  14. private RadioButton radioSexButton;
  15. private Button btnDisplay;
  16. @Override
  17. protected void onCreate(Bundle savedInstanceState) {
  18. super.onCreate(savedInstanceState);
  19. setContentView(R.layout.activity_main);
  20. radioSexGroup=(RadioGroup)findViewById(R.id.radioGroup);
  21. btnDisplay=(Button)findViewById(R.id.button);
  22. btnDisplay.setOnClickListener(new View.OnClickListener() {
  23. @Override
  24. public void onClick(View v) {
  25. int selectedId=radioSexGroup.getCheckedRadioButtonId();
  26. radioSexButton=(RadioButton)findViewById(selectedId);
  27. Toast.makeText(MainActivity.this,radioSexButton.getText(),Toast.LENGTH_SHORT).show();
  28. }
  29. });
  30. }
  31. }

下面是 res/layout/activity_main.xml 文件的内容:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:paddingLeft="@dimen/activity_horizontal_margin"
  7. android:paddingRight="@dimen/activity_horizontal_margin"
  8. android:paddingTop="@dimen/activity_vertical_margin"
  9. android:paddingBottom="@dimen/activity_vertical_margin"
  10. tools:context=".MainActivity">
  11. <TextView
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:text="Radio button"
  15. android:id="@+id/textView"
  16. android:layout_alignParentTop="true"
  17. android:layout_centerHorizontal="true"
  18. android:textSize="35dp" />
  19. <TextView
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:text="Tutorialspoint"
  23. android:id="@+id/textView2"
  24. android:layout_below="@+id/textView"
  25. android:layout_alignRight="@+id/textView"
  26. android:layout_alignEnd="@+id/textView"
  27. android:textSize="35dp"
  28. android:textColor="@android:color/holo_green_dark" />
  29. <ImageView
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:id="@+id/imageView"
  33. android:src="@drawable/abc"
  34. android:layout_below="@+id/textView2"
  35. android:layout_alignLeft="@+id/textView"
  36. android:layout_alignStart="@+id/textView"
  37. android:layout_alignRight="@+id/textView"
  38. android:layout_alignEnd="@+id/textView" />
  39. <RadioGroup
  40. android:layout_width="fill_parent"
  41. android:layout_height="90dp"
  42. android:layout_below="@+id/imageView"
  43. android:layout_marginTop="58dp"
  44. android:weightSum="1"
  45. android:id="@+id/radioGroup"
  46. android:layout_alignLeft="@+id/textView2"
  47. android:layout_alignStart="@+id/textView2"
  48. android:layout_alignRight="@+id/textView3"
  49. android:layout_alignEnd="@+id/textView3">
  50. <RadioButton
  51. android:layout_width="wrap_content"
  52. android:layout_height="55dp"
  53. android:text="Male"
  54. android:id="@+id/radioButton"
  55. android:layout_gravity="center_horizontal"
  56. android:checked="false"
  57. android:textSize="25dp" />
  58. <RadioButton
  59. android:layout_width="wrap_content"
  60. android:layout_height="wrap_content"
  61. android:text="Female"
  62. android:id="@+id/radioButton2"
  63. android:layout_gravity="center_horizontal"
  64. android:checked="false"
  65. android:textSize="25dp"
  66. android:layout_weight="0.13" />
  67. </RadioGroup>
  68. <TextView
  69. android:layout_width="wrap_content"
  70. android:layout_height="wrap_content"
  71. android:text=" Are you?"
  72. android:id="@+id/textView3"
  73. android:textSize="35dp"
  74. android:layout_below="@+id/imageView"
  75. android:layout_alignRight="@+id/textView2"
  76. android:layout_alignEnd="@+id/textView2"
  77. android:layout_alignLeft="@+id/imageView"
  78. android:layout_alignStart="@+id/imageView" />
  79. <Button
  80. android:layout_width="wrap_content"
  81. android:layout_height="wrap_content"
  82. android:text="New Button"
  83. android:id="@+id/button"
  84. android:layout_gravity="center_horizontal"
  85. android:layout_below="@+id/radioGroup"
  86. android:layout_centerHorizontal="true" />
  87. </RelativeLayout>

下面是 res/values/strings.xml 的内容,定义了新的常量:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <string name="app_name">My Applicaiton</string>
  4. <string name="example_radiogroup">Example showing RadioGroup</string>
  5. </resources>

下面是 AndroidManifest.xml 文件的内容:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.example.saira_000.myapplication" >
  4. <application
  5. android:allowBackup="true"
  6. android:icon="@drawable/ic_launcher"
  7. android:label="@string/app_name"
  8. android:theme="@style/AppTheme" >
  9. <activity
  10. android:name="com.example.My Application.MainActivity"
  11. android:label="@string/app_name" >
  12. <intent-filter>
  13. <action android:name="android.intent.action.MAIN" />
  14. <category android:name="android.intent.category.LAUNCHER" />
  15. </intent-filter>
  16. </activity>
  17. </application>
  18. </manifest>

让我们尝试运行 My Application 应用程序。假设您在进行环境设置时创建了 AVD。要从 Android Studio 运行应用程序,请打开项目的 activity 文件之一,然后单击工具栏上的运行 Eclipse Eclipse Run Icon 图标。Android studio 在您的 AVD 上安装应用程序并启动它,如果您的设置和应用程序一切正常,它将显示以下模拟器窗口:

需要选择 malefemale 单选按钮,然后单击新按钮。如果你成功地完成了上述步骤,你会在点击 new 按钮后收到一条消息。


练习

建议在编程时使用布局 XML 文件中的 RadioButton 的不同属性来尝试上面的示例,以使 RadioButton 具有不同的外观。尝试使其可编辑,更改为字体颜色、字体系列、宽度、文本大小等,然后查看结果。您还可以在一个活动中使用多个 RadioButton 控件来尝试上面的实例。

分类导航