| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?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/qingcolor"
- android:id="@+id/parentLay"
- android:orientation="vertical" >
-
- <include
- android:id="@+id/check_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/in_kiln_save"
- android:layout_width="fill_parent"
- android:layout_height="40dp"
- android:textSize="@dimen/textsize_24"
- android:textColor="@color/white"
- android:background="@drawable/login_btn_selector"
- android:text="保存"/>
- </RelativeLayout>
-
-
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_below="@id/check_title"
- android:layout_above="@id/bottomLay"
- android:orientation="vertical"
- >
- <ListView
- android:layout_width="fill_parent"
- android:layout_height="0dp"
- android:id="@+id/listv1"
- android:cacheColorHint="#00000000"
- android:layout_weight="1"
- android:divider="@null"/>
-
-
- </LinearLayout>
-
- </RelativeLayout>
|