Android编程开发之RadioGroup用法实例
更新时间:2015年12月26日 14:15:46 作者:sgx425021234
这篇文章主要介绍了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控件系列之RadioButton与RadioGroup使用方法
- android RadioGroup的使用方法
- android自定义RadioGroup可以添加多种布局的实现方法
- Android程序开发中单选按钮(RadioGroup)的使用详解
- Android RadioGroup和RadioButton控件简单用法示例
- Android RadioGroup 设置某一个选中或者不可选中的方法
- 让Android中RadioGroup不显示在输入法上面的办法
- Android ViewPager与radiogroup实现关联示例
- Android编程单选项框RadioGroup综合应用示例
- Android开发之RadioGroup的简单使用与监听示例
相关文章
Android中一种巧妙的drawable.xml替代方案分享
这篇文章主要给大家介绍了关于Android中一种巧妙的drawable.xml替代方案,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2018-09-09android中使用SharedPreferences进行数据存储的操作方法
本篇文章介绍了,在android中使用SharedPreferences进行数据存储的操作方法。需要的朋友参考下2013-04-04
最新评论