Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 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="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_weight="2"
  11. android:text="0"
  12. android:textSize="@dimen/key_text_size" />
  13.  
  14. <Button
  15. android:id="@+id/button_point"
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content"
  18. android:layout_weight="3"
  19. android:text="."
  20. android:textSize="@dimen/key_text_size" />
  21.  
  22. <Button
  23. android:id="@+id/button_equal"
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. android:layout_weight="3"
  27. android:text="="
  28. android:textSize="@dimen/key_text_size" />
  29.  
  30. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement