RadioGroup和Radiobutton

<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>

 
   
posted @ 2016-04-12 17:31  只剩下我自己了  阅读(242)  评论(0)    收藏  举报