Guest User

three_buttons_menu.xml

a guest
Sep 5th, 2016
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <menu xmlns:android="http://schemas.android.com/apk/res/android">
  3. <item
  4. android:id="@+id/hand"
  5. android:icon="@drawable/hand"
  6. android:title="Jobs" />
  7. <item
  8. android:id="@+id/stern"
  9. android:icon="@drawable/stern"
  10. android:title="Praemien" />
  11. <item
  12. android:id="@+id/chat"
  13. android:icon="@drawable/chat"
  14. android:title="Chat" />
  15. <item
  16. android:id="@+id/einstellungen"
  17. android:icon="@drawable/einstellungen"
  18. android:title="Einstellungen" />
  19.  
  20. <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
  21. xmlns:tools="http://schemas.android.com/tools"
  22. android:id="@+id/three_buttons_activity"
  23. android:layout_width="match_parent"
  24. android:layout_height="match_parent"
  25. tools:context=".MainActivity">
  26.  
  27. <RelativeLayout
  28. android:layout_width="match_parent"
  29. android:layout_height="match_parent"
  30. android:background="#fff">
  31.  
  32. <TextView
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content"
  35. android:textAppearance="?android:attr/textAppearanceLarge"
  36. android:text="Three Buttons Bar"
  37. android:id="@+id/textView"
  38. android:layout_centerVertical="true"
  39. android:layout_centerHorizontal="true"
  40. android:textColor="@color/colorPrimary"
  41. android:textSize="35sp" />
  42. </RelativeLayout>
  43.  
  44. </android.support.design.widget.CoordinatorLayout>
  45. </menu>
Add Comment
Please, Sign In to add comment