├── .gitignore ├── Android_Holo_DateTimePicker ├── AndroidManifest.xml ├── ic_launcher-web.png ├── libs │ ├── android-support-v4.jar │ └── nineoldandroids-2.3.0.jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res │ ├── anim │ │ ├── slide_from_right_slow.xml │ │ └── slide_to_left_slow.xml │ ├── drawable-hdpi │ │ ├── dialog_set_time_divider.9.png │ │ ├── ic_launcher.png │ │ ├── np_numberpicker_down_disabled_focused_holo_dark.png │ │ ├── np_numberpicker_down_disabled_focused_holo_light.png │ │ ├── np_numberpicker_down_disabled_holo_dark.png │ │ ├── np_numberpicker_down_disabled_holo_light.png │ │ ├── np_numberpicker_down_focused_holo_dark.png │ │ ├── np_numberpicker_down_focused_holo_light.png │ │ ├── np_numberpicker_down_longpressed_holo_dark.png │ │ ├── np_numberpicker_down_longpressed_holo_light.png │ │ ├── np_numberpicker_down_normal_holo_dark.png │ │ ├── np_numberpicker_down_normal_holo_light.png │ │ ├── np_numberpicker_down_pressed_holo_dark.png │ │ ├── np_numberpicker_down_pressed_holo_light.png │ │ ├── np_numberpicker_up_disabled_focused_holo_dark.png │ │ ├── np_numberpicker_up_disabled_focused_holo_light.png │ │ ├── np_numberpicker_up_disabled_holo_dark.png │ │ ├── np_numberpicker_up_disabled_holo_light.png │ │ ├── np_numberpicker_up_focused_holo_dark.png │ │ ├── np_numberpicker_up_focused_holo_light.png │ │ ├── np_numberpicker_up_longpressed_holo_dark.png │ │ ├── np_numberpicker_up_longpressed_holo_light.png │ │ ├── np_numberpicker_up_normal_holo_dark.png │ │ ├── np_numberpicker_up_normal_holo_light.png │ │ ├── np_numberpicker_up_pressed_holo_dark.png │ │ └── np_numberpicker_up_pressed_holo_light.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable │ │ ├── np_numberpicker_down_btn_holo_dark.xml │ │ ├── np_numberpicker_down_btn_holo_light.xml │ │ ├── np_numberpicker_up_btn_holo_dark.xml │ │ └── np_numberpicker_up_btn_holo_light.xml │ ├── layout │ │ ├── activity_dark.xml │ │ ├── activity_light.xml │ │ ├── activity_samples.xml │ │ ├── date_picker.xml │ │ ├── number_picker.xml │ │ └── time_picker.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── numberpicker_integers.xml │ │ ├── numberpicker_strings.xml │ │ ├── numberpicker_themes.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml └── src │ └── com │ └── ai │ └── android │ └── picker │ ├── DatePicker.java │ ├── NumberPicker.java │ ├── Scroller.java │ ├── TimePicker.java │ └── test │ ├── DarkThemeActivity.java │ ├── LightThemeActivity.java │ └── SampleActivity.java ├── LICENSE ├── README.md └── raw ├── dark_theme.png └── light_theme.png /.gitignore: -------------------------------------------------------------------------------- 1 | # built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # files for the dex VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Local configuration file (sdk path, etc) 17 | local.properties 18 | 19 | # Eclipse project files 20 | .classpath 21 | .project 22 | -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 9 | 10 | 14 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 27 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/ic_launcher-web.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/libs/nineoldandroids-2.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/libs/nineoldandroids-2.3.0.jar -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-16 15 | -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/anim/slide_from_right_slow.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | 17 | 18 | -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/anim/slide_to_left_slow.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/dialog_set_time_divider.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/dialog_set_time_divider.9.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_disabled_holo_dark.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_disabled_holo_light.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_focused_holo_dark.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_focused_holo_light.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_longpressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_longpressed_holo_dark.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_longpressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_longpressed_holo_light.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_normal_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_normal_holo_dark.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_normal_holo_light.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_pressed_holo_dark.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_down_pressed_holo_light.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_disabled_holo_dark.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_disabled_holo_light.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_focused_holo_dark.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_focused_holo_light.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_longpressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_longpressed_holo_dark.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_longpressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_longpressed_holo_light.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_normal_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_normal_holo_dark.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_normal_holo_light.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_pressed_holo_dark.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-hdpi/np_numberpicker_up_pressed_holo_light.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aizhang/Android-Holo-DateTimePicker/9ee0304f60f2147b3cb9fd74e2c6d320afe0bf53/Android_Holo_DateTimePicker/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable/np_numberpicker_down_btn_holo_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 23 | 24 | 27 | 28 | 32 | 33 | 37 | 38 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable/np_numberpicker_down_btn_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 23 | 24 | 27 | 28 | 32 | 33 | 37 | 38 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable/np_numberpicker_up_btn_holo_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 23 | 24 | 27 | 28 | 32 | 33 | 37 | 38 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/drawable/np_numberpicker_up_btn_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 23 | 24 | 27 | 28 | 32 | 33 | 37 | 38 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /Android_Holo_DateTimePicker/res/layout/activity_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 | 18 | 19 | 23 | 24 |