Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
- android:key="checkbox_pref"
- android:title="Inställningar" >
- <TextView
- android:id="@+id/velocity"
- android:gravity="center_horizontal"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Enhet för hastighet" />
- <CheckBoxPreference
- android:key="km_opt"
- android:title="Km/h"
- android:summary="Kilometer per timme"
- android:defaultValue="true" />
- <CheckBoxPreference
- android:key="mph_opt"
- android:title="Mph"
- android:summary="Miles per hour" />
- <CheckBoxPreference
- android:key="ms_opt"
- android:title="M/s"
- android:summary="Meter per sekund"/>
- <TextView
- android:id="@+id/testText"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- </PreferenceScreen>
Advertisement
Add Comment
Please, Sign In to add comment