| 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:layout_height="0dp"
- android:layout_weight="2.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:id="@+id/scanimg"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_marginLeft="3dp"
- android:gravity="center_horizontal|center_vertical"
- android:scaleType="centerInside" />
-
- <TextView
- android:id="@+id/scantitle"
- 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>
|