中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

基隆市| 富平县| 杭锦后旗| 两当县| 时尚| 六枝特区| 合水县| 榆林市| 小金县| 乌兰察布市| 应用必备| 泽普县| 巴南区| 龙南县| 繁昌县| 兰坪| 青冈县| 黔江区| 西青区| 石泉县| 阳城县| 资兴市| 郁南县| 托克逊县| 大埔区| 汤原县| 磐石市| 石城县| 龙海市| 清水河县| 当涂县| 左云县| 收藏| 龙州县| 萝北县| 徐汇区| 奎屯市| 康马县| 涟源市| 锡林浩特市| 定边县|