第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

是否可以從 RadioGroup 中的 RadioButton 獲取文本

是否可以從 RadioGroup 中的 RadioButton 獲取文本

慕姐4208626 2023-03-09 14:54:43
對(duì)于 android 編程,我有一個(gè)包含一些 RadioButtons 的 RadioGroup。我只想從按鈕中獲取文本,而無(wú)需獲取 RadioButton 的 ID。<RadioGroup      android:layout_width="match_parent"      android:layout_height="wrap_content"      android:id="@+id/radioGroup"      >      <RadioButton        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:text="text1"        />      <RadioButton        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:text="text2"       />      <RadioButton        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:text="text3"        />    </RadioGroup>是否可以只獲取文本?
查看完整描述

2 回答

?
三國(guó)紛爭(zhēng)

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超7個(gè)贊

您可以使用以下代碼訪問(wèn) RadioGroup 中的所有視圖:


    int count = radioGroup.getChildCount(); 

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

        View radioButton = radioGroup.getChildAt(i);

        if (radioButton instanceof RadioButton) {

            Log.d(TAG,"text: "+ radioButton.getText().toString());

        }

    }

參考:在 Android 中獲取 RadioGroup 中的 RadioButtons 數(shù)組


查看完整回答
反對(duì) 回復(fù) 2023-03-09
?
慕哥9229398

TA貢獻(xiàn)1877條經(jīng)驗(yàn) 獲得超6個(gè)贊

我認(rèn)為這不可能。為什么不為每個(gè)單選按鈕提供 id 呢?



查看完整回答
反對(duì) 回復(fù) 2023-03-09
  • 2 回答
  • 0 關(guān)注
  • 180 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)