| 123456789101112131415161718192021222324252627282930313233 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/parentlay"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/qingcolor" >
- <include
- android:id="@+id/check_title"
- layout="@layout/fragment_title" />
-
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_below="@id/check_title"
- android:layout_marginTop="12dp"
- android:orientation="vertical" >
- <ListView
- android:id="@+id/message_listview"
- android:layout_width="fill_parent"
- android:cacheColorHint="#00000000"
- android:listSelector="#00000000"
- android:fadingEdge="none"
- android:fadingEdgeLength="0dp"
- android:layout_height="0dp"
- android:layout_weight="1"
- android:divider="@null" />
-
- </LinearLayout>
-
- </RelativeLayout>
|