Advertisement
Guest User

Untitled

a guest
Dec 13th, 2014
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/ocrmain_group_select_parent"
  4. android:layout_width="wrap_content"
  5. android:layout_height="wrap_content"
  6. android:animateLayoutChanges="true"
  7. android:padding="5dp" >
  8.  
  9. <LinearLayout android:id="@+id/ocrmain_group_select_costholder"
  10. android:orientation="horizontal"
  11. android:layout_width="fill_parent"
  12. android:layout_height="wrap_content"
  13. android:focusable="true" android:focusableInTouchMode="true"
  14. android:layout_alignParentTop="true" >
  15.  
  16. <ImageView android:id="@+id/ocrmain_group_select_item"
  17. android:paddingTop="8dp"
  18. android:paddingStart="5dp"
  19. android:paddingEnd="5dp"
  20. android:layout_weight="8"
  21. android:layout_width="0dp"
  22. android:layout_height="wrap_content" />
  23.  
  24. <EditText android:id="@+id/ocrmain_group_select_cost"
  25. android:gravity="end"
  26. android:layout_width="0dp"
  27. android:layout_height="wrap_content"
  28. android:layout_weight="3"
  29. android:selectAllOnFocus="true"
  30. android:imeOptions="actionDone"
  31. android:inputType="numberDecimal" />
  32.  
  33. </LinearLayout>
  34.  
  35. <ScrollView android:id="@+id/ocrmain_group_select_window"
  36. android:paddingTop="20dp"
  37. android:gravity="end"
  38. android:layout_width="fill_parent"
  39. android:layout_height="180dp"
  40. android:layout_below="@id/ocrmain_group_select_costholder" >
  41.  
  42. <TableLayout android:id="@+id/ocrmain_group_select_list"
  43. android:layout_width="match_parent"
  44. android:layout_height="wrap_content" />
  45.  
  46. </ScrollView>
  47.  
  48. <Button android:id="@+id/ocrmain_group_select_cancelbutton"
  49. android:layout_width="150dp"
  50. android:layout_height="wrap_content"
  51. android:text="Cancel"
  52. android:layout_below="@id/ocrmain_group_select_window"
  53. android:layout_alignParentLeft="true" />
  54.  
  55. <Button android:id="@+id/ocrmain_group_select_okbutton"
  56. android:layout_width="150dp"
  57. android:layout_height="wrap_content"
  58. android:text="Ok"
  59. android:layout_below="@id/ocrmain_group_select_window"
  60. android:layout_alignParentRight="true" />
  61.  
  62. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement