Initial Import. Version 2.0
This commit is contained in:
commit
fbbd2673ff
69 changed files with 2994 additions and 0 deletions
6
res/xml/dialog_button.xml
Normal file
6
res/xml/dialog_button.xml
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="true"
|
||||
android:drawable="@drawable/button_pressed" /> <!-- pressed -->
|
||||
<item android:drawable="@drawable/button_normal" /> <!-- default -->
|
||||
</selector>
|
15
res/xml/preferences.xml
Normal file
15
res/xml/preferences.xml
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PreferenceScreen
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:key="preferences">
|
||||
<PreferenceCategory android:key="general"
|
||||
android:title="@string/pref_gen_cat">
|
||||
<CheckBoxPreference android:title="@string/pref_gen_onservice"
|
||||
android:key="pref_gen_just_onservice"/>
|
||||
<org.r3pek.pharmacies.widgets.SeekBarPreference android:key="pref_gen_maxdist"
|
||||
android:title="@string/pref_gen_maxdist"
|
||||
android:max="10"
|
||||
android:defaultValue="2"
|
||||
android:text=" Km"/>
|
||||
</PreferenceCategory>
|
||||
</PreferenceScreen>
|
Loading…
Add table
Add a link
Reference in a new issue