author | "Vincent Veronis" |
Thu, 21 Apr 2011 21:05:25 +0200 | |
changeset 885 | 193a934390ba |
parent 884 | b5104ccb1916 |
child 886 | 5d3163053c42 |
permissions | -rw-r--r-- |
884 | 1 |
<?xml version="1.0" encoding="utf-8"?> |
2 |
<PreferenceScreen |
|
885
193a934390ba
Try to modify accountPreferences Android API activity
"Vincent Veronis"
parents:
884
diff
changeset
|
3 |
xmlns:android="http://schemas.android.com/apk/res/android"> |
884 | 4 |
<PreferenceCategory |
5 |
android:title="General Settings" /> |
|
6 |
<PreferenceScreen |
|
7 |
android:key="account_settings" |
|
8 |
android:title="Account Settings" |
|
9 |
android:summary="Sync frequency, notifications, etc."> |
|
10 |
<intent |
|
11 |
android:action="com.beem.project.beem.SETTINGS" |
|
12 |
android:targetClass="ui.Settings.class" /> |
|
13 |
</PreferenceScreen> |
|
14 |
<PreferenceCategory |
|
15 |
android:title="Account Actions" /> |
|
16 |
<PreferenceScreen |
|
17 |
android:key="second_preferencescreen" |
|
18 |
android:title="Status Update" |
|
19 |
android:summary="Connect/Disconnect, Change Status..."> |
|
20 |
<intent |
|
21 |
android:action="com.beem.project.beem.CHANGESTATUS" |
|
22 |
android:targetClass="ui.ChangeStatus.class" /> |
|
23 |
</PreferenceScreen> |
|
24 |
<CheckBoxPreference |
|
25 |
android:key="prefer wifi" |
|
885
193a934390ba
Try to modify accountPreferences Android API activity
"Vincent Veronis"
parents:
884
diff
changeset
|
26 |
android:title="Prefer WiFi" |
193a934390ba
Try to modify accountPreferences Android API activity
"Vincent Veronis"
parents:
884
diff
changeset
|
27 |
android:layout="?android:attr/preferenceLayoutChild" /> |
193a934390ba
Try to modify accountPreferences Android API activity
"Vincent Veronis"
parents:
884
diff
changeset
|
28 |
<PreferenceCategory |
193a934390ba
Try to modify accountPreferences Android API activity
"Vincent Veronis"
parents:
884
diff
changeset
|
29 |
android:key="custom" |
193a934390ba
Try to modify accountPreferences Android API activity
"Vincent Veronis"
parents:
884
diff
changeset
|
30 |
android:title="Custom"> |
193a934390ba
Try to modify accountPreferences Android API activity
"Vincent Veronis"
parents:
884
diff
changeset
|
31 |
<com.beem.project.beem.account.CheckBoxPreference_Custom |
193a934390ba
Try to modify accountPreferences Android API activity
"Vincent Veronis"
parents:
884
diff
changeset
|
32 |
android:key="custom_checkbox" |
193a934390ba
Try to modify accountPreferences Android API activity
"Vincent Veronis"
parents:
884
diff
changeset
|
33 |
android:title="Title" |
193a934390ba
Try to modify accountPreferences Android API activity
"Vincent Veronis"
parents:
884
diff
changeset
|
34 |
android:summary="Summary" /> |
193a934390ba
Try to modify accountPreferences Android API activity
"Vincent Veronis"
parents:
884
diff
changeset
|
35 |
</PreferenceCategory> |
884 | 36 |
</PreferenceScreen> |