Android編程開發(fā)之RadioGroup用法實例
更新時間:2015年12月26日 14:15:46 作者:sgx425021234
這篇文章主要介紹了Android編程開發(fā)之RadioGroup用法,結合實例形式分析了Android中RadioGroup單選按鈕的具體使用技巧,需要的朋友可以參考下
本文實例講述了Android編程開發(fā)之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可以添加多種布局的實現(xiàn)方法
- Android程序開發(fā)中單選按鈕(RadioGroup)的使用詳解
- Android RadioGroup和RadioButton控件簡單用法示例
- Android RadioGroup 設置某一個選中或者不可選中的方法
- 讓Android中RadioGroup不顯示在輸入法上面的辦法
- Android ViewPager與radiogroup實現(xiàn)關聯(lián)示例
- Android編程單選項框RadioGroup綜合應用示例
- Android開發(fā)之RadioGroup的簡單使用與監(jiān)聽示例
相關文章
Android實現(xiàn)本地Service方法控制音樂播放
這篇文章主要為大家詳細介紹了Android實現(xiàn)本地Service方法控制音樂播放,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2021-03-03Android實戰(zhàn)打飛機游戲之怪物(敵機)類的實現(xiàn)(4)
這篇文章主要為大家詳細介紹了Android實戰(zhàn)打飛機游戲之怪物(敵機)類的實現(xiàn),具有一定的參考價值,感興趣的小伙伴們可以參考一下2016-07-07Android之AnimationDrawable簡單模擬動態(tài)圖
這篇文章主要為大家詳細介紹了Android之AnimationDrawable簡單模擬動態(tài)圖的實現(xiàn)代碼,具有一定的參考價值,感興趣的小伙伴們可以參考一下2016-09-09Android ExpandableListView使用方法案例詳解
這篇文章主要介紹了Android ExpandableListView使用方法案例詳解,本篇文章通過簡要的案例,講解了該項技術的了解與使用,以下就是詳細內(nèi)容,需要的朋友可以參考下2021-08-08詳解android特性之CoordinatorLayout用法探析實例
本篇文章主要介紹了android特性之CoordinatorLayout用法探析實例,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2018-02-02