My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/net.mandaria.tippytipper">
<PreferenceCategory android:title="Tipping Options">
<net.mandaria.tippytipper.preferences.SeekBarPreference
android:key="default_tip_percentage"
android:title="Default Tip Percentage"
android:summary="Percentage to tip by default"
android:dialogMessage="Percentage to tip by default"
android:defaultValue="15"
android:text="%"
android:max="40"
app:min="0"
/>
<net.mandaria.tippytipper.preferences.SeekBarPreference
android:key="tip_percentage_one"
android:title="First Tip Percentage"
android:summary="Custom value for first tip percentage preset button"
android:dialogMessage="Tip percentage"
android:defaultValue="10"
android:text="%"
android:max="40"
app:min="0"
/>
<net.mandaria.tippytipper.preferences.SeekBarPreference
android:key="tip_percentage_two"
android:title="Second Tip Percentage"
android:summary="Custom value for second tip percentage preset button"
android:dialogMessage="Tip percentage"
android:defaultValue="15"
android:text="%"
android:max="40"
app:min="0"
/>
<net.mandaria.tippytipper.preferences.SeekBarPreference
android:key="tip_percentage_three"
android:title="Third Tip Percentage"
android:summary="Custom value for third tip percentage preset button"
android:dialogMessage="Tip percentage"
android:defaultValue="20"
android:text="%"
android:max="40"
app:min="0"
/>
</PreferenceCategory>
<PreferenceCategory android:title="Tax Options">
<CheckBoxPreference
android:key="enable_exclude_tax_rate"
android:title="Enable Exclude Tax Rate"
android:summary="Excludes tax rate from tip when enabled"
android:defaultValue="false"
android:disableDependentsState="false"
/>
<net.mandaria.tippytipper.preferences.DecimalPreference
android:key="exclude_tax"
android:title="Tax Rate to Exclude"
android:summary="The tax rate to exclude when calculating tip"
android:dialogMessage="Tax Rate"
android:defaultValue="0"
android:dependency="enable_exclude_tax_rate"
/>
</PreferenceCategory>
<PreferenceCategory android:title="Rounding Options">
<ListPreference
android:title="Round Type"
android:summary="Choose to round by tip or total"
android:key="round_type"
android:defaultValue="round_total"
android:entries="@array/listRoundArray"
android:entryValues="@array/listRoundValues" />
</PreferenceCategory>
<PreferenceCategory android:title="Splitting Options">
<net.mandaria.tippytipper.preferences.NumberPickerPreference
android:key="default_number_of_people"
android:title="Default Number People"
android:summary="The number of people to split bill by"
android:dialogMessage="Number of people"
android:defaultValue="2"
android:text=" people"
android:max="20"
app:min="2"
/>
</PreferenceCategory>
<PreferenceCategory android:title="Privacy Options">
<CheckBoxPreference
android:key="enable_error_logging"
android:title="Enable Error Logging"
android:summary="Application reports anonymous error/event information to developer"
android:defaultValue="true"
/>
</PreferenceCategory>
</PreferenceScreen>

Change log

r128 by mandlar on Jun 6, 2010   Diff
Merged development branch into trunk
Go to: 
Project members, sign in to write a code review

Older revisions

r105 by mandlar on May 23, 2010   Diff
Merged developmenet branch into trunk
r63 by mandlar on May 15, 2010   Diff
Merged development changes into trunk
r56 by mandlar on May 11, 2010   Diff
Begin work on DecimalPreference
(incomplete)
All revisions of this file

File info

Size: 3752 bytes, 93 lines
Powered by Google Project Hosting