| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?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:layout_height="0dp"
- android:layout_weight="4.5"
- android:background="@drawable/pop_menu"
- android:orientation="vertical" >
- <View
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="0.5" />
-
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="0dp"
- android:layout_weight="2"
- android:id="@+id/barcodechangelay"
- android:orientation="horizontal" >
- <ImageView
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_marginLeft="3dp"
- android:gravity="center_horizontal|center_vertical"
- android:src="@drawable/scan"
- android:scaleType="centerInside" />
-
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="2dp"
- android:gravity="center_horizontal|center_vertical"
- android:text="扫一扫"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_16" />
- </LinearLayout>
-
- </LinearLayout>
- <View
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_weight="16" />
- </LinearLayout>
-
- <View
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_weight="0.05" />
- </LinearLayout>
|