Guest User

Untitled

a guest
Feb 24th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="wrap_content"
  5. android:layout_height="80dip"
  6. android:background="#3f0102"
  7. android:orientation="horizontal"
  8. android:paddingTop="@dimen/activity_vertical_margin"
  9. android:theme="@style/ThemeOverlay.AppCompat.Dark"
  10. android:weightSum="3"
  11.  
  12. >
  13.  
  14. <ImageButton
  15. android:id="@+id/user"
  16. android:layout_width="0dp"
  17. android:layout_height="wrap_content"
  18. android:layout_weight="1"
  19. android:padding="7dp"
  20. android:scaleType="fitCenter"
  21. android:src="@drawable/user" />
  22.  
  23. <ImageButton
  24. android:id="@+id/add"
  25. android:layout_width="0dp"
  26. android:layout_height="wrap_content"
  27. android:layout_weight="1"
  28. android:padding="7dp"
  29. android:scaleType="fitCenter"
  30. android:src="@drawable/add" />
  31.  
  32.  
  33. <ImageButton
  34. android:id="@+id/about"
  35. android:layout_width="0dp"
  36. android:layout_height="wrap_content"
  37. android:layout_weight="1"
  38. android:padding="7dp"
  39. android:scaleType="fitCenter"
  40. android:src="@drawable/questionMark" />
  41.  
  42. </LinearLayout>
Add Comment
Please, Sign In to add comment