Guest User

settings.xml

a guest
Mar 13th, 2012
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:key="checkbox_pref"
  4. android:title="Inställningar" >
  5.  
  6. <TextView
  7. android:id="@+id/velocity"
  8. android:gravity="center_horizontal"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:text="Enhet för hastighet" />
  12.  
  13. <CheckBoxPreference
  14. android:key="km_opt"
  15. android:title="Km/h"
  16. android:summary="Kilometer per timme"
  17. android:defaultValue="true" />
  18.  
  19. <CheckBoxPreference
  20. android:key="mph_opt"
  21. android:title="Mph"
  22. android:summary="Miles per hour" />
  23.  
  24. <CheckBoxPreference
  25. android:key="ms_opt"
  26. android:title="M/s"
  27. android:summary="Meter per sekund"/>
  28.  
  29. <TextView
  30. android:id="@+id/testText"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content" />
  33.  
  34.  
  35. </PreferenceScreen>
Advertisement
Add Comment
Please, Sign In to add comment