Guest User

Untitled

a guest
Mar 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <LinearLayout
  2. android:layout_width="wrap_content"
  3. android:layout_height="wrap_content"
  4. android:orientation="horizontal">
  5. <EditText
  6. android:id="@+id/cold_arm_name"
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:ems="15"/>
  10. </LinearLayout>
  11.  
  12. <LinearLayout
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:orientation="horizontal">
  16. <EditText
  17. android:id="@+id/cold_arm_cost"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:inputType="numberDecimal"
  21. android:ems="15"/>
  22. </LinearLayout>
  23.  
  24. <LinearLayout
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content">
  27.  
  28. <Button
  29. android:id="@+id/submit_button"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:onClick="Submit"
  33. android:text="Submit"
  34. android:textSize="16sp" />
  35. </LinearLayout>
Add Comment
Please, Sign In to add comment