Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/ocrmain_group_select_parent"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:animateLayoutChanges="true"
- android:padding="5dp" >
- <LinearLayout android:id="@+id/ocrmain_group_select_costholder"
- android:orientation="horizontal"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:focusable="true" android:focusableInTouchMode="true"
- android:layout_alignParentTop="true" >
- <ImageView android:id="@+id/ocrmain_group_select_item"
- android:paddingTop="8dp"
- android:paddingStart="5dp"
- android:paddingEnd="5dp"
- android:layout_weight="8"
- android:layout_width="0dp"
- android:layout_height="wrap_content" />
- <EditText android:id="@+id/ocrmain_group_select_cost"
- android:gravity="end"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="3"
- android:selectAllOnFocus="true"
- android:imeOptions="actionDone"
- android:inputType="numberDecimal" />
- </LinearLayout>
- <ScrollView android:id="@+id/ocrmain_group_select_window"
- android:paddingTop="20dp"
- android:gravity="end"
- android:layout_width="fill_parent"
- android:layout_height="180dp"
- android:layout_below="@id/ocrmain_group_select_costholder" >
- <TableLayout android:id="@+id/ocrmain_group_select_list"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- </ScrollView>
- <Button android:id="@+id/ocrmain_group_select_cancelbutton"
- android:layout_width="150dp"
- android:layout_height="wrap_content"
- android:text="Cancel"
- android:layout_below="@id/ocrmain_group_select_window"
- android:layout_alignParentLeft="true" />
- <Button android:id="@+id/ocrmain_group_select_okbutton"
- android:layout_width="150dp"
- android:layout_height="wrap_content"
- android:text="Ok"
- android:layout_below="@id/ocrmain_group_select_window"
- android:layout_alignParentRight="true" />
- </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement