1. 程式人生 > >自定義RadioButton樣式並去除預設樣式位置

自定義RadioButton樣式並去除預設樣式位置

做專案的遇到要自定義RadioButton的樣式,在網上搜索了很多例子都沒有完美解決,當android:button="@null"的是時候但它的位置還在,空出了很大一塊,橫向排列的時候不是很美觀。試了很多辦法終於解決了這個小問題就是把背景也設為"@null"  這樣:android:background="@null" ,就可以了 它的也就沒有了 空出的很大部分也沒有了。
全部程式碼:

<RadioGroup
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:gravity="center"
                    android:orientation="horizontal"
                    android:paddingBottom="15dp"
                    android:paddingTop="15dp" >
 
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginRight="5dp"
                        android:text="保額"
                        android:textColor="#363636"
                        android:textSize="18sp" />
 
                    <RadioButton
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginRight="5dp"
                        android:background="@null"
                        android:button="@null"
                        android:drawableLeft="@drawable/radio_selector"
                        android:singleLine="true"
                        android:text="10萬"
                        android:textColor="#2991a5"
                        android:textSize="18sp" />
 
                    <RadioButton
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginRight="5dp"
                        android:background="@null"
                        android:button="@null"
                        android:drawableLeft="@drawable/radio_selector"
                        android:singleLine="true"
                        android:text="20萬"
                        android:textColor="#2991a5"
                        android:textSize="18sp" />
 
                    <RadioButton
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginRight="5dp"
                        android:background="@null"
                        android:button="@null"
                        android:drawableLeft="@drawable/radio_selector"
                        android:singleLine="true"
                        android:text="50萬"
                        android:textColor="#2991a5"
                        android:textSize="18sp" />
 
                    <RadioButton
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginRight="5dp"
                        android:background="@null"
                        android:button="@null"
                        android:drawableLeft="@drawable/radio_selector"
                        android:singleLine="true"
                        android:text="100萬"
                        android:textColor="#2991a5"
                        android:textSize="18sp" />
                </RadioGroup>