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

溫馨提示×

溫馨提示×

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

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

android怎么實現單選按鈕功能

發布時間:2021-04-17 11:14:50 來源:億速云 閱讀:208 作者:小新 欄目:移動開發

這篇文章主要介紹android怎么實現單選按鈕功能,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

首先我們要明白實現這樣一個效果需要哪幾部?

android怎么實現單選按鈕功能

1、在layout布局文件中建立一個文件,我起的名字為activity_radio.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="vertical">
  <!--
   RadioButton 要想實現多選一的效果必須放到RadioGroup 中,否則無法實現多選一的效果.
   技巧:要面向RadioGroup 編程,不要面向RaidoButton 編程,否則將增加很大代碼量
   android:orientation="vertical":執行按鈕組的方向,默認值是vertical.
   RadioGroup的父類時LinearLayout,但方向的默認值不再是線性布局的水平方向了,而是改成了垂直方向.
   -->
  <RadioGroup
    android:id="@+id/radioGroup_gender"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:orientation="vertical"
    >
    <RadioButton
      android:id="@+id/radioButton_male"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center_horizontal"
      android:checked="true"
      android:text="男" />
    <RadioButton
      android:id="@+id/radioButton_female"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center_horizontal"
      android:checked="false"
      android:text="女" />
  </RadioGroup>
</LinearLayout>

2、在MainActivity中實現細節的功能

package com.hsj.example.commoncontroldemo02;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Toast;

public class MainActivity_bak06 extends AppCompatActivity implements RadioGroup.OnCheckedChangeListener {

  private RadioGroup radioGroup_gender;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_radio);
    this.radioGroup_gender= (RadioGroup) this.findViewById(R.id.radioGroup_gender);
    this.radioGroup_gender.setOnCheckedChangeListener(this);

  }

  /**
   * 當單選按鈕的狀態發生變化時自動調用的方法
   * @param group 單選按鈕所在的按鈕組的對象
   * @param checkedId 用戶選中的單選按鈕的id值
   */
  @Override
  public void onCheckedChanged(RadioGroup group, int checkedId) {
    //得到用戶選中的 RadioButton 對象
    RadioButton radioButton_checked= (RadioButton) group.findViewById(checkedId);
    String gender=radioButton_checked.getText().toString();
    Toast.makeText(this,gender,Toast.LENGTH_LONG).show();
    switch (checkedId){
      case R.id.radioButton_male:
        //當用戶點擊男性按鈕時執行的代碼
        System.out.println("===男性===");
        break;
      case R.id.radioButton_female:
        //當用戶點擊女性按鈕時執行的代碼
        System.out.println("===女性===");
        break;
    }
    System.out.println("===onCheckedChanged(RadioGroup group="+group+", int checkedId="+checkedId+")==");
  }
}

以上是“android怎么實現單選按鈕功能”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

湛江市| 原平市| 康马县| 庐江县| 于田县| 云南省| 临高县| 察雅县| 湄潭县| 凉城县| 周至县| 青岛市| 藁城市| 罗山县| 温泉县| 昆山市| 防城港市| 桦川县| 英德市| 乌拉特前旗| 蒙城县| 延津县| 昭平县| 留坝县| 龙州县| 章丘市| 登封市| 吉林省| 张家港市| 固镇县| 鲜城| 西安市| 平顶山市| 铜陵市| 弥渡县| 上蔡县| 左云县| 清原| 清丰县| 军事| 临泉县|