Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
918
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:layout_margin="16dp"
  7. android:orientation="vertical"
  8. tools:context=".MainActivity">
  9.  
  10. <TextView
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_marginBottom="20dp"
  14. android:text="Membuat Menu Drop Down Android "
  15. android:textSize="24sp" />
  16.  
  17. <Spinner
  18. android:id="@+id/spinner"
  19. android:layout_width="fill_parent"
  20. android:layout_height="wrap_content"
  21. android:backgroundTint="#2ecc71"
  22. android:entries="@array/android_dropdown_arrays"
  23. android:padding="5dp" />
  24.  
  25. <Spinner
  26. android:id="@+id/spinner1"
  27. android:layout_width="fill_parent"
  28. android:layout_height="wrap_content"
  29. android:backgroundTint="#2ecc71"
  30. android:entries="@array/android_dropdown_arrays"
  31. android:padding="5dp" />
  32.  
  33. <TextView
  34. android:layout_width="fill_parent"
  35. android:layout_height="fill_parent"
  36. android:layout_marginBottom="20dp"
  37. android:gravity="bottom|center"
  38. android:text="okedroid.com"
  39. android:textSize="24sp"
  40. android:textStyle="bold" />
  41.  
  42. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement