标签:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" ><RadioGroup android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" > <RadioButton android:id="@+id/r1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="资讯" android:layout_weight="1" android:button="@null" android:gravity="center" android:textSize="25dp" /> <RadioButton android:id="@+id/r2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="热点" android:layout_weight="1" android:button="@null" android:textSize="25dp" android:gravity="center" /> <RadioButton android:id="@+id/r3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="博客" android:layout_weight="1" android:button="@null" android:gravity="center" android:textSize="25dp" /> <RadioButton android:id="@+id/r4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="推荐" android:button="@null" android:gravity="center" android:textSize="25dp" android:layout_weight="1" /> </RadioGroup>
</LinearLayout>
RadioGroup和Radiobutton
原文地址:http://www.cnblogs.com/nanze/p/5383536.html