<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/background"
|
android:orientation="vertical" >
|
|
<RelativeLayout
|
android:id="@+id/title_layout"
|
android:layout_width="match_parent"
|
android:layout_height="45dp"
|
android:background="@color/white" >
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerHorizontal="true"
|
android:layout_centerVertical="true"
|
android:text="礼包"
|
android:textColor="@color/text_4c"
|
android:textSize="17sp" />
|
</RelativeLayout>
|
|
<View
|
android:id="@+id/view_line"
|
android:layout_width="match_parent"
|
android:layout_height="0.6dp"
|
android:background="@color/mg_line"
|
android:layout_below="@id/title_layout"
|
/>
|
|
<ListView
|
android:id="@+id/listView"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:divider="@null"
|
android:listSelector="#00000000"
|
android:focusable="false"
|
android:layout_below="@id/view_line"
|
android:scrollbars="none" />
|
|
<LinearLayout
|
android:id="@+id/loading_view_ll"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerInParent="true"
|
android:visibility="gone"
|
>
|
<ImageView
|
android:id="@+id/mImageLoading"
|
android:layout_width="15dp"
|
android:layout_height="15dp"
|
android:visibility="gone"
|
/>
|
</LinearLayout>
|
|
</RelativeLayout>
|