<?  version=\"1.0\" encoding=\"utf-8\"?>
<LinearLayout  ns:android=\"http://schemas.android.com/apk/res/android\"
    android:layout_width=\"match_parent\"
    android:layout_height=\"match_parent\"
    android:background=\"#fff000\"
    android:orientation=\"vertical\"
    >
    <RadioGroup
        android:id=\"@+id/radio_groups\"
        android:layout_width=\"match_parent\"
        android:layout_height=\"0dp\"
        android:layout_weight=\"1\"
        android:orientation=\"horizontal\"
        >
        <RadioButton
            android:id=\"@+id/rbs1\"
            android:layout_width=\"0dp\"
            android:layout_height=\"match_parent\"
            android:layout_weight=\"1\"
            android:text=\"新闻\"
            android:button=\"@null\"
            android:gravity=\"center\"
            android:checked=\"true\"
            android:background=\"@drawable/ys\"
            />
        <RadioButton
            android:id=\"@+id/rbs2\"
            android:layout_width=\"0dp\"
            android:layout_height=\"match_parent\"
            android:layout_weight=\"1\"
            android:text=\"文章\"
            android:button=\"@null\"
            android:gravity=\"center\"
            android:background=\"@drawable/ys\"
            />
        <RadioButton
            android:id=\"@+id/rbs3\"
            android:layout_width=\"0dp\"
            android:layout_height=\"match_parent\"

            android:layout_weight=\"1\"
            android:text=\"看点\"
            android:button=\"@null\"
            android:gravity=\"center\"
            android:background=\"@drawable/ys\"
            />

    </RadioGroup>
    <android.support.v4.view.ViewPager
        android:id=\"@+id/view_pager\"
        android:layout_width=\"match_parent\"
        android:layout_height=\"0dp\"
        android:layout_weight=\"9\"
        >

    </android.support.v4.view.ViewPager>

</LinearLayout>
收藏 打印