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-05 21:17  无名“  阅读(231)  评论(1编辑  收藏  举报