91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android基礎四之RadioGroup

發布時間:2020-08-02 09:33:12 來源:網絡 閱讀:375 作者:小石頭llx 欄目:移動開發
//activity_main.xml
<LinearLayout 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"
    tools:context="com.vincentlin.radiogroup.MainActivity" >
    <RadioGroup
        android:id="@+id/radioGroup1"
        android:orientation="horizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >
        <RadioButton
            android:id="@+id/radio0"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:checked="true"
            android:text="@string/male" />
        <RadioButton
            android:id="@+id/radio1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/female" />
    </RadioGroup>
</LinearLayout>
//strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">RadioGroup</string>
    <string name="hello_world">Hello world!</string>
    <string name="action_settings">Settings</string>
    <string name="male">男</string>
    <string name="female">女</string>
</resources>
//MainActivity.java
package com.vincentlin.radiogroup;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.widget.RadioGroup;
import android.widget.RadioGroup.OnCheckedChangeListener;
public class MainActivity extends Activity 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);
  //實現RadionGroup的事件監聽
  rg.setOnCheckedChangeListener( this);
 }
 @Override
 public void onCheckedChanged(RadioGroup group, int checkedId) {
  switch (checkedId) {
  case R.id.radio0:
   Log.i("tag","當前為男性");
   break;
  case R.id.radio1:
   Log.i("tag","當前為女性");
   break;
  default:
   break;
  }
  
 }
 
}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

赣榆县| 崇阳县| 饶平县| 诸暨市| 淮安市| 吉木萨尔县| 阳春市| 扬州市| 西乡县| 柳江县| 湾仔区| 句容市| 云安县| 资中县| 肥乡县| 嫩江县| 盐城市| 双流县| 筠连县| 阳江市| 武陟县| 会泽县| 汉沽区| 二连浩特市| 万安县| 清远市| 博爱县| 锦屏县| 类乌齐县| 鄄城县| 海阳市| 隆回县| 上杭县| 新巴尔虎左旗| 肥乡县| 普兰店市| 石渠县| 柘荣县| 新宁县| 屯留县| 泸溪县|