a99ad06f87a48a2e7c2d45c434fc22593f4962f6.svn-base 2.19 KB
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/follow_lin"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/activity_background"
    android:orientation="vertical" >

    <!-- 标题栏布局 -->

    <RelativeLayout
        android:id="@+id/follow_top_layout"
        style="@style/all_title" >

        <ImageView
            android:id="@+id/follow_back_btn"
            style="@style/title_btn"
            android:layout_marginLeft="2dp"
            android:src="@drawable/btn_back_white" />

        <TextView
            android:id="@+id/follow_main_tv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="关注的人"
            android:textColor="@color/white"
            android:textSize="@dimen/all_title_size" />

        <ImageView
            android:id="@+id/follow_add"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:layout_marginRight="12dp"
            android:padding="5dip"
            android:src="@drawable/follow_add" />
    </RelativeLayout>

    <com.ivt.android.me.ui.myview.SwipeRefreshAndMoreLoadLayout
        android:id="@+id/follow_swip"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/follow_top_layout" >

        <ListView
            android:id="@+id/follow_list"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:scrollbars="none" />
    </com.ivt.android.me.ui.myview.SwipeRefreshAndMoreLoadLayout>

    <TextView
        android:id="@+id/nothing"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:alpha="0.5"
        android:gravity="center"
        android:text="空空如也"
        android:textColor="#000000"
        android:textSize="16sp" />

</RelativeLayout>