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

溫馨提示×

溫馨提示×

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

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

Android之RadioGroup獲取選中值的方法

發布時間:2020-11-12 17:22:08 來源:億速云 閱讀:3215 作者:Leah 欄目:移動開發

Android之RadioGroup獲取選中值的方法?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

獲取選中的RadioButton兩種方式:

第一種方式  

通過radioGroup.getCheckedRadioButtonId()來得到選中的RadioButton的ID,從而利用findviewbyid得到RadioButton進而獲取選中值

1.布局文件

    android:id="@+id/radio_group"

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:gravity="center"

    android:orientation="vertical"

    android:paddingLeft="30dp"

    android:paddingRight="30dp">


   

        android:id="@+id/safety_production"

        android:layout_width="170dp"

        android:layout_height="wrap_content"

        android:textColor="@color/font_2"

        android:textSize="18sp"

        android:padding="5dp"

        android:tag="2"/>


   

        android:id="@+id/emergency_drill"

        android:layout_width="170dp"

        android:layout_height="wrap_content"

        android:textColor="@color/font_2"

        android:textSize="18sp"

        android:padding="5dp"

        android:tag="3"/>

   

        android:id="@+id/other_services"

        android:layout_width="170dp"

        android:layout_height="wrap_content"

        android:textColor="@color/font_2"

        android:textSize="18sp"

        android:padding="5dp"

        android:tag="4"/>

2.具體用法

radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {

    @Override

    public void onCheckedChanged(RadioGroup radioGroup, int i) {

        selectRadioBtn();

    }

});


private void selectRadioBtn(){


RadioButton rb = (RadioButton)ServiceRequestActivity.this.findViewById(radioGroup.getCheckedRadioButtonId());


text.setText(rb.getText);


}

第二種方式

需要利用一下三個方法

(1)radiogroup.getChildCount()   獲取radiogroup中子組件(radioButton)的數目
(2)radiogroup.getChildAt()         根據索引獲取當前索引對應的radioButton
(3)radiobutton.isChecked()        判斷當前組件是否被選中

整體思路是,對radiogroup中組件進行循環,依次判斷isChecked(),從而找到選中的組件()

int count = radioGroup.getChildCount();

for(int i = 0 ;i < count;i++){

    RadioButton rb = (RadioButton)radioGroup.getChildAt(i);

    if(rb.isChecked()){

        Toast.makeText(ServiceRequestActivity.this, "選中"+rb.getTag().toString(), Toast.LENGTH_SHORT).show();

        break;

    }

}

關于Android之RadioGroup獲取選中值的方法問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

阿坝县| 通海县| 白朗县| 乃东县| 泗洪县| 汝阳县| 靖西县| 漳浦县| 遂川县| 长春市| 盘锦市| 康乐县| 桐梓县| 台州市| 北川| 乐山市| 郑州市| 环江| 漯河市| 天镇县| 安化县| 军事| 漳平市| 贵州省| 宁城县| 固镇县| 青岛市| 平阴县| 沂南县| 扬州市| 涡阳县| 天长市| 新民市| 抚宁县| 乌拉特前旗| 宜昌市| 东兰县| 敦化市| 明光市| 乐至县| 洪泽县|