您好,登錄后才能下訂單哦!
在RadioButton控件中,通常圖標位于文本的前面。要改變圖標的位置,可以使用自定義布局來實現。以下是一種常見的方法:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true">
<layer-list>
<item android:drawable="@drawable/ic_checked" android:gravity="center_vertical|start"/>
</layer-list>
</item>
<item android:state_checked="false">
<layer-list>
<item android:drawable="@drawable/ic_unchecked" android:gravity="center_vertical|start"/>
</layer-list>
</item>
</selector>
<RadioButton
android:id="@+id/radio_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@drawable/custom_radio_button"
android:text="RadioButton"/>
通過以上步驟,就可以改變RadioButton控件圖標的位置。如果有其他需求,也可以使用其他方式自定義RadioButton的外觀。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。