Android(安卓)RadioButton 控件

RadioButton 有两种状态:选中(checked)或未选中(unchecked)。让用户从集合中选择一个选项。


实例

这个实例将带您完成简单的步骤,展示如何使用线性布局和 RadioButton 创建自己的 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.support.v7.app.ActionBarActivity;
  3. import android.os.Bundle;
  4. import android.view.View;
  5. import android.widget.Button;
  6. import android.widget.ImageButton;
  7. import android.widget.RadioButton;
  8. import android.widget.RadioGroup;
  9. import android.widget.Toast;
  10. public class MainActivity extends ActionBarActivity {
  11. RadioGroup rg1;
  12. RadioButton rb1;
  13. Button b1;
  14. protected void onCreate(Bundle savedInstanceState) {
  15. super.onCreate(savedInstanceState);
  16. setContentView(R.layout.activity_main);
  17. addListenerRadioButton();
  18. }
  19. private void addListenerRadioButton() {
  20. rg1 = (RadioGroup) findViewById(R.id.radioGroup);
  21. b1 = (Button) findViewById(R.id.button2);
  22. b1.setOnClickListener(new View.OnClickListener() {
  23. @Override
  24. public void onClick(View v) {
  25. int selected=rg1.getCheckedRadioButtonId();
  26. rb1=(RadioButton)findViewById(selected);
  27. Toast.makeText(MainActivity.this,rb1.getText(),Toast.LENGTH_LONG).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:paddingBottom="@dimen/activity_vertical_margin"
  7. android:paddingLeft="@dimen/activity_horizontal_margin"
  8. android:paddingRight="@dimen/activity_horizontal_margin"
  9. android:paddingTop="@dimen/activity_vertical_margin"
  10. tools:context=".MainActivity">
  11. <TextView
  12. android:id="@+id/textView1"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:text="Example of Radio Button"
  16. android:layout_alignParentTop="true"
  17. android:layout_centerHorizontal="true"
  18. android:textSize="30dp" />
  19. <TextView
  20. android:id="@+id/textView2"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:text="Tutorials point"
  24. android:textColor="#ff87ff09"
  25. android:textSize="30dp"
  26. android:layout_above="@+id/imageButton"
  27. android:layout_centerHorizontal="true"
  28. android:layout_marginBottom="40dp" />
  29. <ImageButton
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:id="@+id/imageButton"
  33. android:src="@drawable/abc"
  34. android:layout_centerVertical="true"
  35. android:layout_centerHorizontal="true" />
  36. <Button
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:id="@+id/button2"
  40. android:text="ClickMe"
  41. android:layout_alignParentBottom="true"
  42. android:layout_centerHorizontal="true" />
  43. <RadioGroup
  44. android:id="@+id/radioGroup"
  45. android:layout_width="fill_parent"
  46. android:layout_height="fill_parent"
  47. android:layout_below="@+id/imageButton"
  48. android:layout_alignLeft="@+id/textView2"
  49. android:layout_alignStart="@+id/textView2">
  50. <RadioButton
  51. android:layout_width="142dp"
  52. android:layout_height="wrap_content"
  53. android:text="JAVA"
  54. android:id="@+id/radioButton"
  55. android:textSize="25dp"
  56. android:textColor="@android:color/holo_red_light"
  57. android:checked="false"
  58. android:layout_gravity="center_horizontal" />
  59. <RadioButton
  60. android:layout_width="wrap_content"
  61. android:layout_height="wrap_content"
  62. android:text="ANDROID"
  63. android:id="@+id/radioButton2"
  64. android:layout_gravity="center_horizontal"
  65. android:checked="false"
  66. android:textColor="@android:color/holo_red_dark"
  67. android:textSize="25dp" />
  68. <RadioButton
  69. android:layout_width="136dp"
  70. android:layout_height="wrap_content"
  71. android:text="HTML"
  72. android:id="@+id/radioButton3"
  73. android:layout_gravity="center_horizontal"
  74. android:checked="false"
  75. android:textSize="25dp"
  76. android:textColor="@android:color/holo_red_dark" />
  77. </RadioGroup>
  78. </RelativeLayout>

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

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <string name="app_name">My Application</string>
  4. </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>

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

如果用户选择了任何 RadioButton 单选按钮,它应该在消息上给出相同的名称。例如,如果用户选择了 JAVA,它会给出一条作为 JAVA 的消息。


练习

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

分类导航