Android編程開發(fā)之RadioGroup用法實(shí)例
本文實(shí)例講述了Android編程開發(fā)之RadioGroup用法。分享給大家供大家參考,具體如下:
RadioGroup 有時(shí)候比較有用.主要特征是給用戶提供多選一機(jī)制。

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);
// 改變默認(rèn)選項(xiàng)
group_temo.check(R.id.radio1);
// 獲取默認(rèn)被被選中值
checkRadioButton = (RadioButton) group_temo.findViewById(group_temo
.getCheckedRadioButtonId());
Toast.makeText(this, "默認(rèn)的選項(xiàng)的值是:" + checkRadioButton.getText(),
Toast.LENGTH_LONG).show();
// 注冊事件
group_temo
.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
// 點(diǎn)擊事件獲取的選擇對象
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程序設(shè)計(jì)有所幫助。
- Android控件系列之RadioButton與RadioGroup使用方法
- android RadioGroup的使用方法
- android自定義RadioGroup可以添加多種布局的實(shí)現(xiàn)方法
- Android程序開發(fā)中單選按鈕(RadioGroup)的使用詳解
- Android RadioGroup和RadioButton控件簡單用法示例
- Android RadioGroup 設(shè)置某一個(gè)選中或者不可選中的方法
- 讓Android中RadioGroup不顯示在輸入法上面的辦法
- Android ViewPager與radiogroup實(shí)現(xiàn)關(guān)聯(lián)示例
- Android編程單選項(xiàng)框RadioGroup綜合應(yīng)用示例
- Android開發(fā)之RadioGroup的簡單使用與監(jiān)聽示例
相關(guān)文章
android在連拍菜單中增加連拍張數(shù)選項(xiàng)功能實(shí)現(xiàn)代碼
想要增加連拍張數(shù)選項(xiàng)需要在entries, entryvalues中添加兩項(xiàng),同時(shí)在mtk_strings.xml中添加相應(yīng)的字符串,具體如下,感興趣的朋友可以參考下哈2013-06-06
Android sqlite設(shè)置主鍵自增長的方法教程
這篇文章主要給大家介紹了關(guān)于Android sqlite設(shè)置主鍵自增長的方法教程,文中通過示例代碼介紹的非常詳細(xì),對大家具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面跟著小編一起來學(xué)習(xí)學(xué)習(xí)吧。2017-06-06
Android使用Intent的Action和Data屬性實(shí)現(xiàn)點(diǎn)擊按鈕跳轉(zhuǎn)到撥打電話和發(fā)送短信界面
這篇文章主要介紹了Android中使用Intent的Action和Data屬性實(shí)現(xiàn)點(diǎn)擊按鈕跳轉(zhuǎn)到撥打電話和發(fā)送短信,需要的朋友可以參考下2020-01-01
Android使用ViewDragHelper實(shí)現(xiàn)仿QQ6.0側(cè)滑界面(一)
這篇文章主要介紹了Android使用ViewDragHelper實(shí)現(xiàn)仿QQ6.0側(cè)滑界面(一)的相關(guān)資料,需要的朋友可以參考下2016-02-02
Android自定義Drawable實(shí)現(xiàn)圓角效果
Flutter實(shí)現(xiàn)簡單的內(nèi)容高亮效果
仿墨跡天氣在Android App中實(shí)現(xiàn)自定義zip皮膚更換
Android使用注解代替枚舉節(jié)省系統(tǒng)內(nèi)存開銷的方法
Android 中FloatingActionButton(懸浮按鈕)實(shí)例詳解

