1
0
Fork 0

Initial Import. Version 2.0

This commit is contained in:
Carlos Mogas da Silva 2010-05-17 00:14:00 +01:00
commit fbbd2673ff
69 changed files with 2994 additions and 0 deletions

View 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
View 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>