a99ad06f87a48a2e7c2d45c434fc22593f4962f6.svn-base
2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?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>