Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <LinearLayout
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent"
  4. android:orientation="horizontal">
  5.  
  6. <Button
  7. android:id="@+id/button_0"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:layout_weight="2"
  11. android:text="0" />
  12.  
  13. <Button
  14. android:id="@+id/button_point"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_weight="1"
  18. android:text="." />
  19.  
  20. <Button
  21. android:id="@+id/button_equal"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:layout_weight="1"
  25. android:text="=" />
  26. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement