最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android編程開(kāi)發(fā)之RadioGroup用法實(shí)例

 更新時(shí)間:2015年12月26日 14:15:46   作者:sgx425021234  
這篇文章主要介紹了Android編程開(kāi)發(fā)之RadioGroup用法,結(jié)合實(shí)例形式分析了Android中RadioGroup單選按鈕的具體使用技巧,需要的朋友可以參考下

本文實(shí)例講述了Android編程開(kāi)發(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();
  // 注冊(cè)事件
  group_temo
    .setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
     @Override
     public void onCheckedChanged(RadioGroup group, int checkedId) {
      // 點(diǎn)擊事件獲取的選擇對(duì)象
      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>

希望本文所述對(duì)大家Android程序設(shè)計(jì)有所幫助。

相關(guān)文章

  • Android自定義Drawable實(shí)現(xiàn)圓角效果

    Android自定義Drawable實(shí)現(xiàn)圓角效果

    這篇文章主要為大家詳細(xì)介紹了Android自定義Drawable實(shí)現(xiàn)圓角效果,實(shí)現(xiàn)一個(gè)圓形和圓角的背景圖片效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-08-08
  • Flutter實(shí)現(xiàn)簡(jiǎn)單的內(nèi)容高亮效果

    Flutter實(shí)現(xiàn)簡(jiǎn)單的內(nèi)容高亮效果

    內(nèi)容高亮并不陌生,特別是在搜索內(nèi)容頁(yè)面,可以說(shuō)四處可見(jiàn),這篇文章主要為大家介紹了如何使用Flutter實(shí)現(xiàn)簡(jiǎn)單的內(nèi)容高亮效果,需要的可以參考下
    2023-08-08
  • 仿墨跡天氣在Android App中實(shí)現(xiàn)自定義zip皮膚更換

    仿墨跡天氣在Android App中實(shí)現(xiàn)自定義zip皮膚更換

    這篇文章主要介紹了仿墨跡天氣在Android App中實(shí)現(xiàn)自定義zip皮膚更換的方法,即讓用戶可以自行通過(guò)自制或者下載的zip皮膚包進(jìn)行換膚,需要的朋友可以參考下
    2016-02-02
  • Android使用注解代替枚舉節(jié)省系統(tǒng)內(nèi)存開(kāi)銷的方法

    Android使用注解代替枚舉節(jié)省系統(tǒng)內(nèi)存開(kāi)銷的方法

    在本篇文章里小編給大家整理的是關(guān)于Android使用注解代替枚舉節(jié)省系統(tǒng)內(nèi)存開(kāi)銷的方法和實(shí)例,需要的朋友們參考下。
    2020-01-01
  • Android 中FloatingActionButton(懸浮按鈕)實(shí)例詳解

    Android 中FloatingActionButton(懸浮按鈕)實(shí)例詳解

    這篇文章主要介紹了Android 中FloatingActionButton(懸浮按鈕)實(shí)例詳解的相關(guān)資料,需要的朋友可以參考下
    2017-05-05
  • 最新評(píng)論

    六盘水市| 铜陵市| 临城县| 石楼县| 平阳县| 合阳县| 贵港市| 武穴市| 常山县| 永宁县| 东阳市| 黎平县| 乌兰浩特市| 克山县| 九龙县| 石柱| 宜黄县| 开阳县| 安吉县| 瑞金市| 黄冈市| 漳平市| 沐川县| 南岸区| 茂名市| 安康市| 天祝| 曲阳县| 衢州市| 白河县| 海城市| 阿城市| 崇信县| 上思县| 浮梁县| 出国| 邵阳市| 潜江市| 共和县| 灵宝市| 尼玛县|