当前位置: 首页 > 编程笔记 >

Android编程开发之RadioGroup用法实例

甘永春
2023-03-14
本文向大家介绍Android编程开发之RadioGroup用法实例,包括了Android编程开发之RadioGroup用法实例的使用技巧和注意事项,需要的朋友参考一下

本文实例讲述了Android编程开发之RadioGroup用法。分享给大家供大家参考,具体如下:

RadioGroup 有时候比较有用.主要特征是给用户提供多选一机制。

MainActivity.java

package com.example.lesson16_radio;
import android.app.Activity;
import android.os.Bundle;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Toast;
public class MainActivity extends Activity {
 private RadioGroup group_temo;
 private RadioButton checkRadioButton;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  group_temo = (RadioGroup) findViewById(R.id.radioGroup1);
  // 改变默认选项
  group_temo.check(R.id.radio1);
  // 获取默认被被选中值
  checkRadioButton = (RadioButton) group_temo.findViewById(group_temo
    .getCheckedRadioButtonId());
  Toast.makeText(this, "默认的选项的值是:" + checkRadioButton.getText(),
    Toast.LENGTH_LONG).show();
  // 注册事件
  group_temo
    .setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
     @Override
     public void onCheckedChanged(RadioGroup group, int checkedId) {
      // 点击事件获取的选择对象
      checkRadioButton = (RadioButton) group_temo
        .findViewById(checkedId);
      Toast.makeText(getApplicationContext(),
        "获取的ID是" + checkRadioButton.getText(),
        Toast.LENGTH_LONG).show();
     }
    });
 }
}

布局文件

<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" >
 <RadioGroup
  android:id="@+id/radioGroup1"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_alignParentLeft="true"
  android:layout_alignParentRight="true"
  android:layout_alignParentTop="true" >
  <RadioButton
   android:id="@+id/radio0"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:checked="true"
   android:text="@string/text_java" />
  <RadioButton
   android:id="@+id/radio1"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="@string/text_net" />
  <RadioButton
   android:id="@+id/radio2"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="@string/text_php" />
 </RadioGroup>
</RelativeLayout>

希望本文所述对大家Android程序设计有所帮助。

 类似资料:
  • 本文向大家介绍Android编程开发之NotiFication用法详解,包括了Android编程开发之NotiFication用法详解的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android编程开发之NotiFication用法。分享给大家供大家参考,具体如下: notification就是通知的意思,安卓中指通知栏,一般用在电话,短信,邮件,闹钟铃声,在手机的状态栏上就会出现一个小

  • 本文向大家介绍Android开发之ViewSwitcher用法实例,包括了Android开发之ViewSwitcher用法实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android开发之ViewSwitcher用法。分享给大家供大家参考,具体如下: android.widget.ViewSwitcher是ViewAnimator的子类,用于在两个View之间切换,但每次只能显示一个

  • 本文向大家介绍Android编程开发之TextView控件用法(2种方法),包括了Android编程开发之TextView控件用法(2种方法)的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android编程开发之TextView控件用法。分享给大家供大家参考,具体如下: 这里我们会讲讲常用控件的使用。 在今后的大多数章节里面也是一样的,我们会具体的说说某些控件的用法。因为只要把这些控件组

  • 本文向大家介绍Android开发之TabActivity用法实例详解,包括了Android开发之TabActivity用法实例详解的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android开发之TabActivity用法。分享给大家供大家参考,具体如下: 一.简介 TabActivity继承自Activity,目的是让同一界面容纳更多的内容。TabActivity实现标签页的功能,通过

  • 本文向大家介绍Android开发之BroadcastReceiver用法实例分析,包括了Android开发之BroadcastReceiver用法实例分析的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android开发中BroadcastReceiver用法。分享给大家供大家参考。具体分析如下: 在Android系统中,广播(Broadcast)是在组件之间传播数据(Intent)的一种

  • 本文向大家介绍Android程序开发中单选按钮(RadioGroup)的使用详解,包括了Android程序开发中单选按钮(RadioGroup)的使用详解的使用技巧和注意事项,需要的朋友参考一下 在还没给大家介绍单选按钮(RadioGroup)的使用,先给大家展示下效果图吧: xml文件 java文件 以上所述是小编给大家介绍的Android程序开发中单选按钮(RadioGroup)的使用详解,希