| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?xml version="1.0" encoding="UTF-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/rlyt_menu"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal" >
- <View
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_weight="3" />
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="2"
- android:orientation="vertical" >
- <View
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_weight="0.1" />
- <LinearLayout
- android:layout_width="fill_parent"
- android:id="@+id/menuLin"
- android:layout_height="0dp"
- android:layout_weight="1.3"
- android:background="@drawable/pop_menu"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- android:id="@+id/resetGroutingLin"
- android:orientation="horizontal" >
- <ImageView
- android:layout_width="25dp"
- android:layout_height="25dp"
- android:layout_gravity="center_horizontal|center_vertical"
- android:src="@drawable/tongji9"
- android:scaleType="centerInside" />
-
- <TextView
-
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:id="@+id/tvResetGrouting"
- android:layout_gravity="center_horizontal|center_vertical"
- android:layout_marginLeft="3dp"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_16" />
- </LinearLayout>
-
- <View
- android:layout_width="fill_parent"
- android:layout_height="1dp"
- android:background="@color/text_gray"
- />
-
-
- </LinearLayout>
- <View
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_weight="10" />
- </LinearLayout>
- <View
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_weight="0.05" />
- </LinearLayout>
|