| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/parentRel"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/background" >
- <include
- android:id="@+id/titleset"
- layout="@layout/fragment_title" />
- <RelativeLayout
- android:id="@+id/bottomLay"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true" >
- <Button
- android:id="@+id/btnSaveFT"
- android:layout_width="fill_parent"
- android:layout_height="45dp"
- android:background="@drawable/login_btn_selector"
- android:text="保存 "
- android:textColor="@color/white"
- android:textSize="@dimen/textsize_24" />
- </RelativeLayout>
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_above="@id/bottomLay"
- android:layout_below="@id/titleset"
- android:orientation="vertical" >
- <ListView
- android:id="@+id/message_listview_ft"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:cacheColorHint="#00000000"
- android:divider="@null"
- android:listSelector="#00000000" />
- </LinearLayout>
- </RelativeLayout>
|