-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathREADME
30 lines (18 loc) · 904 Bytes
/
README
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
In Eclipse with your project open:
1. In the Package Explorer right click on your project and select "Properties".
2. Select "Java Build Path" -> "Libraries".
3. "Add External JARs..." then select the DatePreference.jar file.
In your activity that descends from PreferenceActivity:
import org.bostonandroid.datepreference.DatePreference;
In your preference XML:
<org.bostonandroid.datepreference.DatePreference
android:key="dob" android:title="@string/dob"
android:defaultValue="1991.01.01" />
To quickly get the Date selected for "dob", in your PreferenceActivity:
DatePreference.getDateFor(
PreferenceManager.getDefaultSharePreferences(this),
"dob");
To set the date use .setDate(String).
To make the JAR:
With just the DatePreference source code loaded in Eclipse:
In the Package Explorer right click on the "default.jardesc" file and select "Create JAR"