Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <Spinner
  2. android:background="@drawable/background"
  3. android:id="@+id/spinner"
  4. android:layout_width="wrap_content"
  5. android:layout_height="wrap_content"
  6. style="@android:style/Widget.Holo.Light.Spinner"/>
  7.  
  8. <?xml version="1.0" encoding="utf-8"?>
  9. <shape xmlns:android="http://schemas.android.com/apk/res/android"
  10. android:shape="rectangle">
  11. <corners android:radius="2dp" />
  12. <solid android:color="#00ff00" />
  13. </shape>
  14.  
  15. <Spinner
  16. android:background="@drawable/spinner_background"
  17. android:id="@+id/date_spinner"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:clickable="false"
  21. android:popupBackground="@drawable/spinner_popup_background"/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement