<?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:background="@color/pageBg"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/back_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp"
android:layout_centerVertical="true"
android:orientation="horizontal">
<ImageView
android:layout_width="20dp"
android:layout_height="30dp"
android:padding="5dp"
android:src="@drawable/ic_left_arrow"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="返回"/>
</LinearLayout>
<TextView
android:id="@+id/top_title_text"
android:layout_width="wrap_content"
android:layout_centerInParent="true"
android:textSize="16sp"
android:textColor="#333333"
android:layout_height="wrap_content"/>
</RelativeLayout>
<com.handmark.pulltorefresh.library.PullToRefreshListView
android:id="@+id/app_list_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>