文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android编程单选项框RadioGroup综合应用示例

2022-06-06 07:09

关注

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

今天介绍的是RadioGroup 的组事件.RadioGroup 可将各自不同的RadioButton ,设限于同一个Radio 按钮组,同一个RadioGroup 组里的按钮,只能做出单一选择(单选题).

首先,我们先设计一个TextView Widget ,以及一个RadioGroup ,并将该RadioGroup 内放置两个RadioButton ,默认为都不选择,在程序运行阶段,利用onCheckedChanged 作为启动事件装置,让User选择其中一个按钮,显示被选择的内容,最的将RadioButton 的选项文字显示于TextView 当中.

下面我们看一下效果图:

 

下面是涉及的相关代码:

string.xml:


<?xml version="1.0" encoding="utf-8"?>
<resources>
 <string name="hello">Hello World, RadioGroupDemo</string>
 <string name="app_name">RadioGroupDemo</string>
 <string name="tr_radio_op1">帅哥</string>
 <string name="tr_radio_op2">美女</string>
 <string name="str_radio_question1">请问你是?</string>
</resources>

主布局main.xml:


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 >
 <!--第一個TextView -->
 <TextView
  android:id="@+id/myTextView"
  android:layout_width="228px"
  android:layout_height="49px"
  android:text="@string/str_radio_question1"
  android:textSize="30sp"
 />
 <!--建立一個RadioGroup -->
 <RadioGroup
  android:id="@+id/myRadioGroup"
  android:layout_width="137px"
  android:layout_height="216px"
  android:orientation="vertical"
  >
  <!--第一個RadioButton -->
  <RadioButton
   android:id="@+id/myRadioButton1"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="@string/tr_radio_op1"
  />
  <!--第二個RadioButton -->
  <RadioButton
   android:id="@+id/myRadioButton2"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="@string/tr_radio_op2"
  />
  </RadioGroup>
</LinearLayout>

最后是主控制程序RadioGroupDemo.Java:


package com.android.test;
import android.app.Activity;
import android.os.Bundle;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.TextView;
public class RadioGroupDemo extends Activity
{
 public TextView mTextView1;
 public RadioGroup mRadioGroup1;
 public RadioButton mRadio1,mRadio2;
 public void onCreate(Bundle savedInstanceState)
 {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  
  mTextView1 = (TextView) findViewById(R.id.myTextView);
  mRadioGroup1 = (RadioGroup) findViewById(R.id.myRadioGroup);
  mRadio1 = (RadioButton) findViewById(R.id.myRadioButton1);
  mRadio2 = (RadioButton) findViewById(R.id.myRadioButton2);
  
  mRadioGroup1.setOnCheckedChangeListener(mChangeRadio);
 }
 private RadioGroup.OnCheckedChangeListener mChangeRadio = new
      RadioGroup.OnCheckedChangeListener()
 {
  @Override
  public void onCheckedChanged(RadioGroup group, int checkedId)
  {
   // TODO Auto-generated method stub
   if(checkedId==mRadio1.getId())
   {
    
    mTextView1.setText(mRadio1.getText());
   }
   else if(checkedId==mRadio2.getId())
   {
    
    mTextView1.setText(mRadio2.getText());
   }
  }
 };
}

运行RadioGroupDemo.java ,将得到以上效果。

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android视图View技巧总结》、《Android布局layout技巧总结》、《Android图形与图像处理技巧总结》、《Android开发入门与进阶教程》、《Android调试技巧与常见问题解决方法汇总》、《Android多媒体操作技巧汇总(音频,视频,录音等)》、《Android基本组件用法总结》及《Android控件用法总结》

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

您可能感兴趣的文章:Android控件系列之RadioButton与RadioGroup使用方法android RadioGroup的使用方法android自定义RadioGroup可以添加多种布局的实现方法Android程序开发中单选按钮(RadioGroup)的使用详解Android RadioGroup和RadioButton控件简单用法示例Android RadioGroup 设置某一个选中或者不可选中的方法Android编程开发之RadioGroup用法实例让Android中RadioGroup不显示在输入法上面的办法Android ViewPager与radiogroup实现关联示例Android开发之RadioGroup的简单使用与监听示例


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯