| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/parentRel"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/qingcolor" >
- <include
- android:id="@+id/callout_title"
- 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/saveBtn"
- 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/callout_title"
- android:orientation="vertical" >
- <ListView
- android:id="@+id/callout_lstview"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:cacheColorHint="#00000000"
- android:layout_marginTop="3dp"
- android:divider="@null" />
-
- </LinearLayout>
-
- </RelativeLayout>
|