884
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
2 |
<PreferenceScreen
|
|
3 |
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
4 |
<PreferenceCategory android:key="dataAndSynchronization"
|
|
5 |
android:title="SYNCRHONISATION BEEM" />
|
|
6 |
<PreferenceCategory
|
|
7 |
android:title="General Settings" />
|
|
8 |
<PreferenceScreen
|
|
9 |
android:key="account_settings"
|
|
10 |
android:title="Account Settings"
|
|
11 |
android:summary="Sync frequency, notifications, etc.">
|
|
12 |
<intent
|
|
13 |
android:action="com.beem.project.beem.SETTINGS"
|
|
14 |
android:targetClass="ui.Settings.class" />
|
|
15 |
</PreferenceScreen>
|
|
16 |
<PreferenceCategory
|
|
17 |
android:title="Account Actions" />
|
|
18 |
<PreferenceScreen
|
|
19 |
android:key="second_preferencescreen"
|
|
20 |
android:title="Status Update"
|
|
21 |
android:summary="Connect/Disconnect, Change Status...">
|
|
22 |
<intent
|
|
23 |
android:action="com.beem.project.beem.CHANGESTATUS"
|
|
24 |
android:targetClass="ui.ChangeStatus.class" />
|
|
25 |
</PreferenceScreen>
|
|
26 |
<CheckBoxPreference
|
|
27 |
android:key="prefer wifi"
|
|
28 |
android:title="Prefer WiFi" />
|
|
29 |
</PreferenceScreen> |