国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > Android > 正文

Android開發(fā)之RadioGroup的簡單使用與監(jiān)聽示例

2019-12-12 02:22:45
字體:
供稿:網(wǎng)友

本文實例講述了Android RadioGroup的簡單使用與監(jiān)聽。分享給大家供大家參考,具體如下:

activity_main.xml

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:orientation="horizontal" >  <RadioGroup    android:id="@+id/radioGroup1"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:orientation="horizontal" >    <RadioButton      android:id="@+id/radio0"      android:layout_width="wrap_content"      android:layout_height="wrap_content"      android:checked="true"      android:text="男" />    <RadioButton      android:id="@+id/radio1"      android:layout_width="wrap_content"      android:layout_height="wrap_content"      android:text="女" />  </RadioGroup></LinearLayout>

MainActivity.java

package com.example.hello;import android.support.v7.app.ActionBarActivity;import android.widget.RadioGroup;import android.widget.Toast;import android.widget.RadioGroup.OnCheckedChangeListener;import android.os.Bundle;public class MainActivity extends ActionBarActivity implements OnCheckedChangeListener{  private RadioGroup rg;  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_main);    rg = (RadioGroup) findViewById(R.id.radioGroup1);    rg.setOnCheckedChangeListener(this);  }  @Override  public void onCheckedChanged(RadioGroup group, int checkedId) {    switch(checkedId){      case R.id.radio0:        Toast.makeText(MainActivity.this, "男", 1).show();        break;      case R.id.radio1:        Toast.makeText(MainActivity.this, "女", 1).show();        break;    }  }}

更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android開發(fā)入門與進階教程》、《Android調(diào)試技巧與常見問題解決方法匯總》、《Android基本組件用法總結(jié)》、《Android視圖View技巧總結(jié)》、《Android布局layout技巧總結(jié)》及《Android控件用法總結(jié)

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

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 通城县| 绥芬河市| 关岭| 且末县| 余庆县| 虞城县| 绥芬河市| 台山市| 娄烦县| 奉化市| 漠河县| 吴江市| 海林市| 尚义县| 屏山县| 浦东新区| 抚松县| 朝阳县| 防城港市| 临汾市| 固始县| 惠东县| 五家渠市| 驻马店市| 大竹县| 龙川县| 资中县| 邵阳县| 罗江县| 栾川县| 新乡市| 时尚| 礼泉县| 常熟市| 花莲县| 峨眉山市| 沭阳县| 将乐县| 巢湖市| 克山县| 台南县|