- Android 基础
- Android - 首页
- Android - 概述
- Android - 环境搭建
- Android - 架构
- Android - 应用组件
- Android - Hello World 示例
- Android - 资源
- Android - 活动 (Activities)
- Android - 服务 (Services)
- Android - 广播接收器 (Broadcast Receivers)
- Android - 内容提供器 (Content Providers)
- Android - 片段 (Fragments)
- Android - 意图/过滤器 (Intents/Filters)
- Android - 用户界面
- Android - UI 布局
- Android - UI 控件
- Android - 事件处理
- Android - 风格和主题
- Android - 自定义组件
- Android 高级概念
- Android - 拖放
- Android - 通知
- 基于位置的服务
- Android - 发送邮件
- Android - 发送短信
- Android - 打电话
- 发布 Android 应用
- Android 有用示例
- Android - 警报对话框
- Android - 动画
- Android - 音频录制
- Android - 音频管理器 (AudioManager)
- Android - 自动完成
- Android - 最佳实践
- Android - 蓝牙
- Android - 相机
- Android - 剪贴板
- Android - 自定义字体
- Android - 数据备份
- Android - 开发者工具
- Android - 模拟器
- Android - Facebook 集成
- Android - 手势
- Android - Google 地图
- Android - 图片特效
- Android - ImageSwitcher
- Android - 内部存储
- Android - JetPlayer
- Android - JSON 解析器
- Android - LinkedIn 集成
- Android - 加载旋转器
- Android - 本地化
- Android - 登录界面
- Android - MediaPlayer
- Android - 多点触控
- Android - 导航
- Android - 网络连接
- Android - NFC 指南
- Android - PHP/MySQL
- Android - 进度圆圈
- Android - 进度条
- Android - 推送通知
- Android - RenderScript
- Android - RSS 阅读器
- Android - 屏幕录制
- Android - SDK 管理器
- Android - 传感器
- Android - 会话管理
- Android - 共享首选项
- Android - SIP 协议
- Android - 拼写检查器
- Android - SQLite 数据库
- Android - 支持库
- Android - 测试
- Android - 文字转语音
- Android - TextureView
- Android - Twitter 集成
- Android - UI 设计
- Android - UI 模式
- Android - UI 测试
- Android - WebView 布局
- Android - Wi-Fi
- Android - 小部件
- Android - XML 解析器
- Android 有用资源
- Android - 问答
- Android - 有用资源
- Android - 讨论
Android - 单选按钮控件
单选按钮 (RadioButton) 具有两种状态:选中或未选中。这允许用户从一组选项中选择一个选项。
单选按钮
示例
本示例将引导您完成简单的步骤,展示如何使用线性布局和单选按钮创建您自己的 Android 应用程序。
步骤 | 描述 |
---|---|
1 | 您将使用 Android Studio 创建一个 Android 应用程序,并将其命名为 我的应用程序,包名为 com.example.saira_000.myapplication,如Hello World 示例章节中所述。 |
2 | 修改 src/MainActivity.java 文件以添加点击事件。 |
2 | 修改 res/layout/activity_main.xml 文件的默认内容,以包含 Android UI 控件。 |
3 | Android Studio 会处理默认常量,因此无需在 strings.xml 文件中声明默认常量。 |
4 | 运行应用程序以启动 Android 模拟器并验证对应用程序所做更改的结果。 |
以下是修改后的主活动文件 src/MainActivity.java 的内容。此文件可以包含每个基本生命周期方法。
在下面的示例中,abc 表示 tutorialspoint 的图像
package com.example.saira_000.myapplication; import android.support.v7.app.ActionBarActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.ImageButton; import android.widget.RadioButton; import android.widget.RadioGroup; import android.widget.Toast; public class MainActivity extends ActionBarActivity { RadioGroup rg1; RadioButton rb1; Button b1; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); addListenerRadioButton(); } private void addListenerRadioButton() { rg1 = (RadioGroup) findViewById(R.id.radioGroup); b1 = (Button) findViewById(R.id.button2); b1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { int selected=rg1.getCheckedRadioButtonId(); rb1=(RadioButton)findViewById(selected); Toast.makeText(MainActivity.this,rb1.getText(),Toast.LENGTH_LONG).show(); } }); } }
以下是 res/layout/activity_main.xml 文件的内容:
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 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"> <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Example of Radio Button" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" android:textSize="30dp" /> <TextView android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Tutorials point" android:textColor="#ff87ff09" android:textSize="30dp" android:layout_above="@+id/imageButton" android:layout_centerHorizontal="true" android:layout_marginBottom="40dp" /> <ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/imageButton" android:src="@drawable/abc" android:layout_centerVertical="true" android:layout_centerHorizontal="true" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/button2" android:text="ClickMe" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" /> <RadioGroup android:id="@+id/radioGroup" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_below="@+id/imageButton" android:layout_alignLeft="@+id/textView2" android:layout_alignStart="@+id/textView2"> <RadioButton android:layout_width="142dp" android:layout_height="wrap_content" android:text="JAVA" android:id="@+id/radioButton" android:textSize="25dp" android:textColor="@android:color/holo_red_light" android:checked="false" android:layout_gravity="center_horizontal" /> <RadioButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="ANDROID" android:id="@+id/radioButton2" android:layout_gravity="center_horizontal" android:checked="false" android:textColor="@android:color/holo_red_dark" android:textSize="25dp" /> <RadioButton android:layout_width="136dp" android:layout_height="wrap_content" android:text="HTML" android:id="@+id/radioButton3" android:layout_gravity="center_horizontal" android:checked="false" android:textSize="25dp" android:textColor="@android:color/holo_red_dark" /> </RadioGroup> </RelativeLayout>
以下是 res/values/strings.xml 文件的内容,用于定义这些新常量:
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">My Application</string> </resources>
以下是 AndroidManifest.xml 文件的默认内容:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.saira_000.myapplication" > <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name="com.example.My Application.MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
让我们尝试运行您的 我的应用程序 应用程序。我假设您在进行环境设置时已创建您的 AVD。要从 Android Studio 运行应用程序,请打开项目的一个活动文件,然后单击工具栏中的运行 图标。Android Studio 将应用程序安装到您的 AVD 并启动它,如果您的设置和应用程序一切正常,它将显示以下模拟器窗口:
如果用户选中任何单选按钮,它应该在 Toast 消息中显示相同的名称。例如,如果用户选中 JAVA,则会显示 JAVA 的 Toast 消息。
练习
我建议您尝试在布局 XML 文件和编程时使用 RadioButton 的不同属性来修改上述示例,以获得不同的 RadioButton 外观。尝试使其可编辑,更改字体颜色、字体系列、宽度、textSize 等,然后查看结果。您也可以在一个活动中尝试使用多个 RadioButton 控件。
android_user_interface_controls.htm
广告