fragment_hall_me.xml 2.28 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="@dimen/all_title_next_size"
        android:orientation="horizontal"
        android:background="#ffffff" >

        <RadioGroup
            android:id="@+id/layout_title"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginLeft="48dp"
            android:layout_marginRight="48dp"
            android:orientation="horizontal" >

            <RadioButton
                android:id="@+id/hall_rb_like"
                style="@style/hall_text"
                android:checked="true"
                android:text="@string/hall_live" />

            <RadioButton
                android:id="@+id/hall_rb_hot"
                style="@style/hall_text"
                android:text="@string/hall_hot" />

            <RadioButton
                android:id="@+id/hall_rb_new"
                style="@style/hall_text"
                android:text="@string/hall_new" />

            <RadioButton
                android:id="@+id/hall_rb_star"
                style="@style/hall_text"
                android:text="@string/hall_star" />
        </RadioGroup>

        <View
            android:layout_width="match_parent"
            android:layout_height="1px"
            android:layout_alignBottom="@+id/hall_sv"
            android:background="#dcdcdc" />

        <com.ivt.android.me.ui.myview.tabview.HallScllorTabView
            android:id="@+id/hall_sv"
            android:layout_width="match_parent"
            android:layout_height="3dp"
            android:layout_alignParentBottom="true"
            android:layout_alignLeft="@+id/layout_title"
            android:layout_alignRight="@+id/layout_title"
            android:background="@null" />
    </RelativeLayout>

    <android.support.v4.view.ViewPager
        android:id="@+id/hall_vp"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#000000" >
    </android.support.v4.view.ViewPager>

</LinearLayout>