Android的RadioButton隨著選中狀態的改變字型顏色也改變
注意是字型顏色,而不是背景顏色
要注意的有:
1.字型顏色這裡是color,而不是textColor
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:color="@color/loginRadioButtonChecked"/>
<!-- not selected -->
<item android:color="@color/loginRadioButtonNormal"/>
</selector>
<RadioGroup
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/rb_login_mp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="名片"
android:textColor="@drawable/shape_login_radiobutton_select" />
<RadioButton
android:id="@+id/rb_login_gw"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="崗位"
android:textColor="@drawable/shape_login_radiobutton_select" />
</RadioGroup>
相關文章
- CSS改變文字選中狀態下的顏色CSS
- Flutter改變狀態列字型、狀態列背景顏色、Appbar背景顏色的方式FlutterAPP
- CSS 改變文字選中顏色CSS
- android狀態列一體化(改變狀態列的背景顏色)Android
- Android開發——Java程式碼動態改變顏色字型的方法AndroidJava
- 改變UITableView選中行高亮的顏色UIView
- NGUI和UGUI改變字型顏色的寫法NGUIUGUI
- 改變SVG圖的顏色SVG
- 智慧變色T恤 顏色隨運動狀態變
- Android 圓形ProgressBar 改變顏色Android
- 選中按鈕改變文字大小和顏色
- Android 使用ColorMatrix改變圖片顏色AndroidColorMatrix
- 改變Android按鈕背景顏色的高效方法Android
- CardView改變陰影顏色View
- web前端 改變SVG圖的顏色Web前端SVG
- 視訊直播app原始碼,按鈕被按下時顏色隨著改變APP原始碼
- linux改變shell的輸出顏色Linux
- pycharm改變語法錯誤的顏色PyCharm
- Unreal Cook Book:動態改變材質的顏色等引數Unreal
- javascript動態改變單選按鈕radio的選中狀態JavaScript
- 靜態文字顏色背景改變示例源程式 (轉)
- 改變標題字型,選單字型 (轉)
- JS 操作 DOM 改變方塊顏色JS
- css3 ::selection的用法(改變選中文字的背景顏色或者文字顏色)CSSS3
- android短視訊開發,設定APP字型大小不隨著系統變化而改變AndroidAPP
- Android 沉浸式狀態列 漸變顏色的實現Android
- 利用CSS改變圖片顏色的多種方法!CSS
- 直播軟體原始碼,改變button的背景顏色原始碼
- 滑鼠移動到button顏色改變的實現
- Swt/Jface tableviewer 加入filter ,改變行的顏色ViewFilter
- 使用 Promise 迴圈改變 div 背景顏色Promise
- CSS魔法堂:改變單選框顏色就這麼吹毛求疵!CSS
- Android系統更改狀態列字型顏色Android
- 利用CSS改變圖片顏色的100種方法!CSS
- 純css改變輸入框游標顏色CSS
- 動態改變螢幕設定 解析度、顏色等。 (轉)
- 快速搭建直播平臺,點選按鈕(Button)後改變顏色
- 線上直播系統原始碼,iOS 根據滑動距離改變狀態列顏色原始碼iOS