我想要一些禁用查看文本的單選按鈕,但單選按鈕看起來很正常。如何啓用單選按鈕但禁用文本
用戶可以單擊單選按鈕,將顯示一些關於未來版本的挑逗,但我也想清楚地展示哪些功能尚未提供。
這裏有一個畫面:
而且到目前爲止我的代碼,實際上,我希望有一個更好的解決方案,但如果情況並非如此下面的代碼中存在以下問題:
由於測試無線電設備不是無線電組佈局它們不會取消選擇其他的兄弟姐妹下,
因爲測試實際上是2個收音機(一個是按鈕而不是文本,另一個是沒有按鈕的文本)點擊文本不會檢查按鈕!這實際上很重要!
看起來寫多了一行會換行,但它超出線性佈局幾個像素。
<RadioGroup android:layout_width="match_parent" android:layout_height="match_parent"> <RadioButton android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Normal, unchecked" /> <RadioButton android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Normal, unchecked" /> <RadioButton android:layout_width="match_parent" android:layout_height="wrap_content" android:checked="true" android:text="Normal, checked" /> <RadioButton android:layout_width="match_parent" android:layout_height="wrap_content" android:enabled="false" android:text="Disabled, unchecked" /> <RadioButton android:layout_width="match_parent" android:layout_height="wrap_content" android:checked="true" android:enabled="false" android:text="Disabled, checked, also big line saijdhnasoidasokdmokasmdokasmdkmasdplmaslk;dmsal;kdmas;lmdl;asmdl;mas;ldmasl;dmaslkmdksamdasmdlka" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <RadioButton android:layout_width="wrap_content" android:layout_height="wrap_content" /> <RadioButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:button="@null" android:enabled="false" android:text="Test, unchecked, also big line saijdhnasoidasokdmokasmdokasmdkmasdplmaslk;dmsal;kdmas;lmdl;asmdl;mas;ldmasl;dmaslkmdksamdasmdlka" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <RadioButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:checked="true" /> <RadioButton android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:button="@null" android:enabled="false" android:text="Test, checked" /> </LinearLayout> </RadioGroup>
設置文本顏色相同殘疾人 –
改變顏色(?) –
@VladMatvienko好主意,但是是所有Android設備上使用相同的顏色嗎? –