├── .idea
├── .name
├── copyright
│ └── profiles_settings.xml
├── scopes
│ └── scope_settings.xml
├── vcs.xml
├── encodings.xml
├── misc.xml
├── modules.xml
├── gradle.xml
└── compiler.xml
├── app
├── .gitignore
├── src
│ ├── main
│ │ ├── res
│ │ │ ├── drawable-hdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ ├── ic_add_white_18dp.png
│ │ │ │ ├── ic_add_grey600_18dp.png
│ │ │ │ ├── ic_delete_white_24dp.png
│ │ │ │ ├── ic_event_grey600_18dp.png
│ │ │ │ ├── ic_message_grey600_18dp.png
│ │ │ │ ├── ic_people_grey600_18dp.png
│ │ │ │ ├── ic_view_day_white_24dp.png
│ │ │ │ ├── ic_view_list_grey600_18dp.png
│ │ │ │ ├── ic_view_headline_white_24dp.png
│ │ │ │ └── ic_settings_applications_grey600_18dp.png
│ │ │ ├── drawable-mdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ ├── ic_add_white_18dp.png
│ │ │ │ ├── ic_add_grey600_18dp.png
│ │ │ │ ├── ic_delete_white_24dp.png
│ │ │ │ ├── ic_event_grey600_18dp.png
│ │ │ │ ├── ic_message_grey600_18dp.png
│ │ │ │ ├── ic_people_grey600_18dp.png
│ │ │ │ ├── ic_view_day_white_24dp.png
│ │ │ │ ├── ic_view_list_grey600_18dp.png
│ │ │ │ ├── ic_view_headline_white_24dp.png
│ │ │ │ ├── ic_settings_applications_grey600_18dp.png
│ │ │ │ ├── edit_divider_line.xml
│ │ │ │ └── listview_divider_line.xml
│ │ │ ├── drawable-xxhdpi
│ │ │ │ ├── menu_bg.png
│ │ │ │ ├── ic_launcher.png
│ │ │ │ ├── ic_add_grey600_18dp.png
│ │ │ │ ├── ic_add_white_18dp.png
│ │ │ │ ├── ic_delete_white_24dp.png
│ │ │ │ ├── ic_event_grey600_18dp.png
│ │ │ │ ├── ic_message_grey600_18dp.png
│ │ │ │ ├── ic_people_grey600_18dp.png
│ │ │ │ ├── ic_view_day_white_24dp.png
│ │ │ │ ├── ic_view_list_grey600_18dp.png
│ │ │ │ ├── ic_view_headline_white_24dp.png
│ │ │ │ └── ic_settings_applications_grey600_18dp.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ ├── ic_add_white_18dp.png
│ │ │ │ ├── ic_add_grey600_18dp.png
│ │ │ │ ├── ic_delete_white_24dp.png
│ │ │ │ ├── ic_event_grey600_18dp.png
│ │ │ │ ├── ic_people_grey600_18dp.png
│ │ │ │ ├── ic_view_day_white_24dp.png
│ │ │ │ ├── ic_message_grey600_18dp.png
│ │ │ │ ├── ic_view_list_grey600_18dp.png
│ │ │ │ ├── ic_view_headline_white_24dp.png
│ │ │ │ └── ic_settings_applications_grey600_18dp.png
│ │ │ ├── drawable
│ │ │ │ └── week_picker_layout_selector.xml
│ │ │ ├── values-w820dp
│ │ │ │ └── dimens.xml
│ │ │ ├── anim
│ │ │ │ ├── keep_status.xml
│ │ │ │ ├── one_scale_zero.xml
│ │ │ │ └── zero_scale_one.xml
│ │ │ ├── menu
│ │ │ │ ├── menu_edit.xml
│ │ │ │ └── menu_main.xml
│ │ │ ├── layout
│ │ │ │ ├── toolbar.xml
│ │ │ │ ├── fragment_setting.xml
│ │ │ │ ├── activity_main_menu.xml
│ │ │ │ ├── activity_main.xml
│ │ │ │ ├── listview_all_item.xml
│ │ │ │ └── listview_thing_item.xml
│ │ │ └── values
│ │ │ │ ├── color.xml
│ │ │ │ └── dimens.xml
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── zhenghuiyan
│ │ │ │ └── todaything
│ │ │ │ ├── constant
│ │ │ │ └── FragmentName.java
│ │ │ │ ├── TodayThingApp.java
│ │ │ │ ├── fragment
│ │ │ │ └── BaseFragment.java
│ │ │ │ ├── util
│ │ │ │ ├── StringUtil.java
│ │ │ │ └── DateUtil.java
│ │ │ │ ├── task
│ │ │ │ └── SimpleNoCallbackTask.java
│ │ │ │ ├── data
│ │ │ │ ├── ThingDBHelper.java
│ │ │ │ └── ScheduleContract.java
│ │ │ │ ├── widget
│ │ │ │ └── WeekButton.java
│ │ │ │ └── bean
│ │ │ │ └── ThingMenuItem.java
│ │ └── AndroidManifest.xml
│ └── androidTest
│ │ └── java
│ │ └── com
│ │ └── zhenghuiyan
│ │ └── todaything
│ │ └── ApplicationTest.java
├── proguard-rules.pro
└── build.gradle
├── MaterialDesign
├── .gitignore
├── gradle.properties
├── src
│ ├── main
│ │ ├── res
│ │ │ ├── values
│ │ │ │ ├── strings.xml
│ │ │ │ └── colors.xml
│ │ │ ├── drawable-hdpi
│ │ │ │ └── sprite_check.png
│ │ │ ├── drawable-ldpi
│ │ │ │ └── sprite_check.png
│ │ │ ├── drawable-mdpi
│ │ │ │ └── sprite_check.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ ├── ic_reloj_max.png
│ │ │ │ ├── sprite_check.png
│ │ │ │ ├── dialog_background.9.png
│ │ │ │ ├── float_button1_shadowp.png
│ │ │ │ └── float_button_shadow1.png
│ │ │ ├── drawable-xxhdpi
│ │ │ │ └── sprite_check.png
│ │ │ ├── drawable
│ │ │ │ ├── background_button.9.png
│ │ │ │ ├── background_checkbox.xml
│ │ │ │ ├── background_checkbox_check.xml
│ │ │ │ ├── background_transparent.xml
│ │ │ │ ├── shadow_down.xml
│ │ │ │ ├── background_progress.xml
│ │ │ │ ├── background_switch_ball_uncheck.xml
│ │ │ │ ├── shadow_right.xml
│ │ │ │ ├── background_button_rectangle.xml
│ │ │ │ ├── background_checkbox_uncheck.xml
│ │ │ │ └── background_button_float.xml
│ │ │ ├── anim
│ │ │ │ ├── snackbar_hide_animation.xml
│ │ │ │ ├── snackbar_show_animation.xml
│ │ │ │ ├── dialog_root_show_amin.xml
│ │ │ │ ├── dialog_root_hide_amin.xml
│ │ │ │ ├── dialog_main_show_amination.xml
│ │ │ │ ├── dialog_main_hide_amination.xml
│ │ │ │ └── progress_indeterminate_animation.xml
│ │ │ └── layout
│ │ │ │ └── number_indicator_spinner.xml
│ │ ├── AndroidManifest.xml
│ │ └── java
│ │ │ └── com
│ │ │ └── gc
│ │ │ └── materialdesign
│ │ │ ├── utils
│ │ │ └── Utils.java
│ │ │ └── views
│ │ │ ├── ScrollView.java
│ │ │ └── ButtonFloatSmall.java
│ └── androidTest
│ │ └── java
│ │ └── com
│ │ └── gc
│ │ └── materialdesign
│ │ └── ApplicationTest.java
└── proguard-rules.pro
├── settings.gradle
├── StyleableDateTimePicker
├── build
│ ├── intermediates
│ │ ├── incremental
│ │ │ ├── aidl
│ │ │ │ ├── debug
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── release
│ │ │ │ │ └── dependency.store
│ │ │ │ └── test
│ │ │ │ │ └── debug
│ │ │ │ │ └── dependency.store
│ │ │ └── mergeAssets
│ │ │ │ ├── debug
│ │ │ │ └── merger.xml
│ │ │ │ ├── release
│ │ │ │ └── merger.xml
│ │ │ │ └── test
│ │ │ │ └── debug
│ │ │ │ └── merger.xml
│ │ ├── bundles
│ │ │ ├── debug
│ │ │ │ ├── classes.jar
│ │ │ │ ├── res
│ │ │ │ │ ├── values-v11
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-v14
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-w270dp-h560dp-v13
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-land
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-sw600dp-land-v13
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-v16
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── color
│ │ │ │ │ │ ├── done_text_color.xml
│ │ │ │ │ │ ├── done_text_color_dark.xml
│ │ │ │ │ │ ├── date_picker_year_selector.xml
│ │ │ │ │ │ └── date_picker_selector.xml
│ │ │ │ │ ├── layout
│ │ │ │ │ │ └── date_picker_view_animator.xml
│ │ │ │ │ ├── values-zh-rCN
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── drawable-land
│ │ │ │ │ │ ├── done_background_color.xml
│ │ │ │ │ │ └── done_background_color_dark.xml
│ │ │ │ │ ├── drawable
│ │ │ │ │ │ ├── done_background_color.xml
│ │ │ │ │ │ └── done_background_color_dark.xml
│ │ │ │ │ ├── values-ja
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-ko
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-zh-rTW
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── drawable-land-v19
│ │ │ │ │ │ └── done_background_color.xml
│ │ │ │ │ ├── drawable-v19
│ │ │ │ │ │ └── done_background_color.xml
│ │ │ │ │ └── values-am
│ │ │ │ │ │ └── values.xml
│ │ │ │ └── AndroidManifest.xml
│ │ │ └── release
│ │ │ │ ├── classes.jar
│ │ │ │ ├── res
│ │ │ │ ├── values-v11
│ │ │ │ │ └── values.xml
│ │ │ │ ├── values-v14
│ │ │ │ │ └── values.xml
│ │ │ │ ├── values-w270dp-h560dp-v13
│ │ │ │ │ └── values.xml
│ │ │ │ ├── values-land
│ │ │ │ │ └── values.xml
│ │ │ │ ├── values-sw600dp-land-v13
│ │ │ │ │ └── values.xml
│ │ │ │ ├── values-v16
│ │ │ │ │ └── values.xml
│ │ │ │ ├── color
│ │ │ │ │ ├── done_text_color.xml
│ │ │ │ │ ├── done_text_color_dark.xml
│ │ │ │ │ ├── date_picker_year_selector.xml
│ │ │ │ │ └── date_picker_selector.xml
│ │ │ │ ├── layout
│ │ │ │ │ └── date_picker_view_animator.xml
│ │ │ │ ├── values-zh-rCN
│ │ │ │ │ └── values.xml
│ │ │ │ ├── drawable-land
│ │ │ │ │ ├── done_background_color.xml
│ │ │ │ │ └── done_background_color_dark.xml
│ │ │ │ ├── drawable
│ │ │ │ │ ├── done_background_color.xml
│ │ │ │ │ └── done_background_color_dark.xml
│ │ │ │ ├── values-ko
│ │ │ │ │ └── values.xml
│ │ │ │ ├── values-ja
│ │ │ │ │ └── values.xml
│ │ │ │ ├── values-zh-rTW
│ │ │ │ │ └── values.xml
│ │ │ │ ├── drawable-land-v19
│ │ │ │ │ └── done_background_color.xml
│ │ │ │ ├── drawable-v19
│ │ │ │ │ └── done_background_color.xml
│ │ │ │ └── values-am
│ │ │ │ │ └── values.xml
│ │ │ │ └── AndroidManifest.xml
│ │ ├── res
│ │ │ ├── resources-debug-test.ap_
│ │ │ └── test
│ │ │ │ └── debug
│ │ │ │ ├── values-v11
│ │ │ │ └── values.xml
│ │ │ │ ├── values-v14
│ │ │ │ └── values.xml
│ │ │ │ ├── values-w270dp-h560dp-v13
│ │ │ │ └── values.xml
│ │ │ │ ├── values-land
│ │ │ │ └── values.xml
│ │ │ │ ├── values-v16
│ │ │ │ └── values.xml
│ │ │ │ ├── values-sw600dp-land-v13
│ │ │ │ └── values.xml
│ │ │ │ ├── color
│ │ │ │ ├── done_text_color.xml
│ │ │ │ └── done_text_color_dark.xml
│ │ │ │ ├── values-zh-rCN
│ │ │ │ └── values.xml
│ │ │ │ ├── values-ja
│ │ │ │ └── values.xml
│ │ │ │ ├── values-ko
│ │ │ │ └── values.xml
│ │ │ │ └── values-zh-rTW
│ │ │ │ └── values.xml
│ │ ├── classes
│ │ │ ├── debug
│ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── datetimepicker
│ │ │ │ │ ├── R.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── Utils.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ ├── date
│ │ │ │ │ ├── MonthView.class
│ │ │ │ │ ├── MonthAdapter.class
│ │ │ │ │ ├── DayPickerView$1.class
│ │ │ │ │ ├── DayPickerView.class
│ │ │ │ │ ├── SimpleMonthView.class
│ │ │ │ │ ├── YearPickerView.class
│ │ │ │ │ ├── DatePickerDialog.class
│ │ │ │ │ ├── YearPickerView$1.class
│ │ │ │ │ ├── DatePickerController.class
│ │ │ │ │ ├── DatePickerDialog$1.class
│ │ │ │ │ ├── SimpleDayPickerView.class
│ │ │ │ │ ├── SimpleMonthAdapter.class
│ │ │ │ │ ├── AccessibleDateAnimator.class
│ │ │ │ │ ├── MonthAdapter$CalendarDay.class
│ │ │ │ │ ├── YearPickerView$YearAdapter.class
│ │ │ │ │ ├── MonthView$MonthViewTouchHelper.class
│ │ │ │ │ ├── MonthView$OnDayClickListener.class
│ │ │ │ │ ├── TextViewWithCircularIndicator.class
│ │ │ │ │ ├── DatePickerDialog$OnDateSetListener.class
│ │ │ │ │ ├── DayPickerView$ScrollStateRunnable.class
│ │ │ │ │ └── DatePickerDialog$OnDateChangedListener.class
│ │ │ │ │ ├── time
│ │ │ │ │ ├── CircleView.class
│ │ │ │ │ ├── AmPmCirclesView.class
│ │ │ │ │ ├── RadialTextsView.class
│ │ │ │ │ ├── RadialTextsView$1.class
│ │ │ │ │ ├── TimePickerDialog.class
│ │ │ │ │ ├── RadialPickerLayout$1.class
│ │ │ │ │ ├── RadialPickerLayout$2.class
│ │ │ │ │ ├── RadialPickerLayout.class
│ │ │ │ │ ├── RadialSelectorView$1.class
│ │ │ │ │ ├── RadialSelectorView.class
│ │ │ │ │ ├── TimePickerDialog$1.class
│ │ │ │ │ ├── TimePickerDialog$2.class
│ │ │ │ │ ├── TimePickerDialog$3.class
│ │ │ │ │ ├── TimePickerDialog$4.class
│ │ │ │ │ ├── TimePickerDialog$Node.class
│ │ │ │ │ ├── TimePickerDialog$KeyboardListener.class
│ │ │ │ │ ├── TimePickerDialog$OnTimeSetListener.class
│ │ │ │ │ ├── RadialTextsView$InvalidateUpdateListener.class
│ │ │ │ │ ├── RadialPickerLayout$OnValueSelectedListener.class
│ │ │ │ │ └── RadialSelectorView$InvalidateUpdateListener.class
│ │ │ │ │ ├── AccessibleTextView.class
│ │ │ │ │ ├── AccessibleLinearLayout.class
│ │ │ │ │ ├── HapticFeedbackController.class
│ │ │ │ │ └── HapticFeedbackController$1.class
│ │ │ └── release
│ │ │ │ └── com
│ │ │ │ └── android
│ │ │ │ └── datetimepicker
│ │ │ │ ├── R.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── Utils.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$color.class
│ │ │ │ ├── R$dimen.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$style.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── R$styleable.class
│ │ │ │ ├── date
│ │ │ │ ├── MonthView.class
│ │ │ │ ├── DayPickerView.class
│ │ │ │ ├── MonthAdapter.class
│ │ │ │ ├── DayPickerView$1.class
│ │ │ │ ├── SimpleMonthView.class
│ │ │ │ ├── YearPickerView.class
│ │ │ │ ├── DatePickerDialog$1.class
│ │ │ │ ├── DatePickerDialog.class
│ │ │ │ ├── SimpleMonthAdapter.class
│ │ │ │ ├── YearPickerView$1.class
│ │ │ │ ├── DatePickerController.class
│ │ │ │ ├── SimpleDayPickerView.class
│ │ │ │ ├── AccessibleDateAnimator.class
│ │ │ │ ├── MonthAdapter$CalendarDay.class
│ │ │ │ ├── MonthView$OnDayClickListener.class
│ │ │ │ ├── YearPickerView$YearAdapter.class
│ │ │ │ ├── MonthView$MonthViewTouchHelper.class
│ │ │ │ ├── TextViewWithCircularIndicator.class
│ │ │ │ ├── DayPickerView$ScrollStateRunnable.class
│ │ │ │ ├── DatePickerDialog$OnDateSetListener.class
│ │ │ │ └── DatePickerDialog$OnDateChangedListener.class
│ │ │ │ ├── time
│ │ │ │ ├── CircleView.class
│ │ │ │ ├── AmPmCirclesView.class
│ │ │ │ ├── RadialTextsView.class
│ │ │ │ ├── RadialPickerLayout.class
│ │ │ │ ├── RadialSelectorView.class
│ │ │ │ ├── RadialTextsView$1.class
│ │ │ │ ├── TimePickerDialog$1.class
│ │ │ │ ├── TimePickerDialog$2.class
│ │ │ │ ├── TimePickerDialog$3.class
│ │ │ │ ├── TimePickerDialog$4.class
│ │ │ │ ├── TimePickerDialog.class
│ │ │ │ ├── RadialPickerLayout$1.class
│ │ │ │ ├── RadialPickerLayout$2.class
│ │ │ │ ├── RadialSelectorView$1.class
│ │ │ │ ├── TimePickerDialog$Node.class
│ │ │ │ ├── TimePickerDialog$KeyboardListener.class
│ │ │ │ ├── TimePickerDialog$OnTimeSetListener.class
│ │ │ │ ├── RadialTextsView$InvalidateUpdateListener.class
│ │ │ │ ├── RadialPickerLayout$OnValueSelectedListener.class
│ │ │ │ └── RadialSelectorView$InvalidateUpdateListener.class
│ │ │ │ ├── AccessibleTextView.class
│ │ │ │ ├── AccessibleLinearLayout.class
│ │ │ │ ├── HapticFeedbackController.class
│ │ │ │ └── HapticFeedbackController$1.class
│ │ └── manifests
│ │ │ ├── tmp
│ │ │ └── manifestMerger7612652447339560018.xml
│ │ │ └── test
│ │ │ └── debug
│ │ │ └── AndroidManifest.xml
│ ├── tmp
│ │ ├── packageDebugJar
│ │ │ └── MANIFEST.MF
│ │ └── packageReleaseJar
│ │ │ └── MANIFEST.MF
│ ├── outputs
│ │ └── aar
│ │ │ ├── StyleableDateTimePicker-debug.aar
│ │ │ └── StyleableDateTimePicker-release.aar
│ └── generated
│ │ └── source
│ │ └── buildConfig
│ │ ├── release
│ │ └── com
│ │ │ └── android
│ │ │ └── datetimepicker
│ │ │ └── BuildConfig.java
│ │ ├── debug
│ │ └── com
│ │ │ └── android
│ │ │ └── datetimepicker
│ │ │ └── BuildConfig.java
│ │ └── test
│ │ └── debug
│ │ └── com
│ │ └── android
│ │ └── datetimepicker
│ │ └── test
│ │ └── BuildConfig.java
├── proguard.flags
├── res
│ ├── values-v11
│ │ └── styles.xml
│ ├── values-v14
│ │ └── styles.xml
│ ├── values
│ │ └── attrs.xml
│ ├── values-v16
│ │ ├── strings.xml
│ │ └── styles.xml
│ ├── color
│ │ ├── done_text_color.xml
│ │ ├── done_text_color_dark.xml
│ │ ├── date_picker_year_selector.xml
│ │ └── date_picker_selector.xml
│ ├── layout
│ │ ├── date_picker_view_animator.xml
│ │ ├── year_label_text_view.xml
│ │ └── date_picker_header_view.xml
│ ├── drawable-land
│ │ ├── done_background_color.xml
│ │ └── done_background_color_dark.xml
│ ├── drawable
│ │ ├── done_background_color_dark.xml
│ │ └── done_background_color.xml
│ ├── drawable-land-v19
│ │ └── done_background_color.xml
│ ├── drawable-v19
│ │ └── done_background_color.xml
│ ├── values-w270dp-h560dp
│ │ └── dimens.xml
│ └── values-land
│ │ └── dimens.xml
├── project.properties
├── build.gradle
├── AndroidManifest.xml
├── Android.mk
├── LICENSE
└── src
│ └── com
│ └── android
│ └── datetimepicker
│ └── date
│ └── SimpleMonthAdapter.java
├── .gitignore
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── Screenshot_2015-10-25-12-09-28.jpg
├── Screenshot_2015-10-25-12-09-40.jpg
├── Screenshot_2015-10-25-12-09-54.jpg
├── Screenshot_2015-10-25-12-10-01.jpg
├── README.md
├── gradle.properties
└── TodayThing.iml
/.idea/.name:
--------------------------------------------------------------------------------
1 | TodayThing
--------------------------------------------------------------------------------
/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/MaterialDesign/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app', ':StyleableDateTimePicker', ':MaterialDesign'
2 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/incremental/aidl/debug/dependency.store:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/incremental/aidl/release/dependency.store:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/incremental/aidl/test/debug/dependency.store:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/tmp/packageDebugJar/MANIFEST.MF:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 |
3 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/tmp/packageReleaseJar/MANIFEST.MF:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 |
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .gradle
2 | /local.properties
3 | /.idea/workspace.xml
4 | /.idea/libraries
5 | .DS_Store
6 | /build
7 |
--------------------------------------------------------------------------------
/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Screenshot_2015-10-25-12-09-28.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/Screenshot_2015-10-25-12-09-28.jpg
--------------------------------------------------------------------------------
/Screenshot_2015-10-25-12-09-40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/Screenshot_2015-10-25-12-09-40.jpg
--------------------------------------------------------------------------------
/Screenshot_2015-10-25-12-09-54.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/Screenshot_2015-10-25-12-09-54.jpg
--------------------------------------------------------------------------------
/Screenshot_2015-10-25-12-10-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/Screenshot_2015-10-25-12-10-01.jpg
--------------------------------------------------------------------------------
/MaterialDesign/gradle.properties:
--------------------------------------------------------------------------------
1 | POM_NAME=MaterialDesignLibrary
2 | POM_ARTIFACT_ID=material-design-library
3 | POM_PACKAGING=aar
4 |
5 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | MaterialDesign
3 |
4 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/menu_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xxhdpi/menu_bg.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_add_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-hdpi/ic_add_white_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_add_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-mdpi/ic_add_white_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_add_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xhdpi/ic_add_white_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_add_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-hdpi/ic_add_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_delete_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-hdpi/ic_delete_white_24dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_event_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-hdpi/ic_event_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_add_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-mdpi/ic_add_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_delete_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-mdpi/ic_delete_white_24dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_event_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-mdpi/ic_event_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_add_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xhdpi/ic_add_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_delete_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xhdpi/ic_delete_white_24dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_add_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xxhdpi/ic_add_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_add_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xxhdpi/ic_add_white_18dp.png
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable-hdpi/sprite_check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/MaterialDesign/src/main/res/drawable-hdpi/sprite_check.png
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable-ldpi/sprite_check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/MaterialDesign/src/main/res/drawable-ldpi/sprite_check.png
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable-mdpi/sprite_check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/MaterialDesign/src/main/res/drawable-mdpi/sprite_check.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_message_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-hdpi/ic_message_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_people_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-hdpi/ic_people_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_view_day_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-hdpi/ic_view_day_white_24dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_message_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-mdpi/ic_message_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_people_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-mdpi/ic_people_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_view_day_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-mdpi/ic_view_day_white_24dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_event_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xhdpi/ic_event_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_people_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xhdpi/ic_people_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_view_day_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xhdpi/ic_view_day_white_24dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_delete_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xxhdpi/ic_delete_white_24dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_event_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xxhdpi/ic_event_grey600_18dp.png
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable-xhdpi/ic_reloj_max.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/MaterialDesign/src/main/res/drawable-xhdpi/ic_reloj_max.png
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable-xhdpi/sprite_check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/MaterialDesign/src/main/res/drawable-xhdpi/sprite_check.png
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable-xxhdpi/sprite_check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/MaterialDesign/src/main/res/drawable-xxhdpi/sprite_check.png
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable/background_button.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/MaterialDesign/src/main/res/drawable/background_button.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_view_list_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-hdpi/ic_view_list_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_view_list_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-mdpi/ic_view_list_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_message_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xhdpi/ic_message_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_view_list_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xhdpi/ic_view_list_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_message_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xxhdpi/ic_message_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_people_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xxhdpi/ic_people_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_view_day_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xxhdpi/ic_view_day_white_24dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_view_headline_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-hdpi/ic_view_headline_white_24dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_view_headline_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-mdpi/ic_view_headline_white_24dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_view_headline_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xhdpi/ic_view_headline_white_24dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_view_list_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xxhdpi/ic_view_list_grey600_18dp.png
--------------------------------------------------------------------------------
/.idea/scopes/scope_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable-xhdpi/dialog_background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/MaterialDesign/src/main/res/drawable-xhdpi/dialog_background.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_view_headline_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xxhdpi/ic_view_headline_white_24dp.png
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable-xhdpi/float_button1_shadowp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/MaterialDesign/src/main/res/drawable-xhdpi/float_button1_shadowp.png
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable-xhdpi/float_button_shadow1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/MaterialDesign/src/main/res/drawable-xhdpi/float_button_shadow1.png
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/classes.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/bundles/debug/classes.jar
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/classes.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/bundles/release/classes.jar
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/res/resources-debug-test.ap_:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/res/resources-debug-test.ap_
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_settings_applications_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-hdpi/ic_settings_applications_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_settings_applications_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-mdpi/ic_settings_applications_grey600_18dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_settings_applications_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_applications_grey600_18dp.png
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/outputs/aar/StyleableDateTimePicker-debug.aar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/outputs/aar/StyleableDateTimePicker-debug.aar
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_settings_applications_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_applications_grey600_18dp.png
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/outputs/aar/StyleableDateTimePicker-release.aar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/outputs/aar/StyleableDateTimePicker-release.aar
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #00FF00
4 | #66aaaaaa
5 |
6 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$id.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/Utils.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/Utils.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$attr.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$color.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$dimen.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$style.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$id.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/Utils.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/Utils.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$drawable.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$layout.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$string.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$attr.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$color.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$dimen.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$layout.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$string.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$style.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/BuildConfig.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/BuildConfig.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/R$styleable.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$drawable.class
--------------------------------------------------------------------------------
/app/src/main/java/com/zhenghuiyan/todaything/constant/FragmentName.java:
--------------------------------------------------------------------------------
1 | package com.zhenghuiyan.todaything.constant;
2 |
3 | /**
4 | * Created by zhenghuiyan on 2015/2/14.
5 | */
6 | public enum FragmentName {
7 | Today,
8 | All
9 | }
10 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/MonthView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/MonthView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/CircleView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/CircleView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/BuildConfig.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/BuildConfig.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/R$styleable.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/MonthAdapter.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/MonthAdapter.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/MonthView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/MonthView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/CircleView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/CircleView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/AccessibleTextView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/AccessibleTextView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DayPickerView$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DayPickerView$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DayPickerView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DayPickerView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/SimpleMonthView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/SimpleMonthView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/YearPickerView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/YearPickerView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/AmPmCirclesView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/AmPmCirclesView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialTextsView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialTextsView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/AccessibleTextView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/AccessibleTextView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DayPickerView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DayPickerView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/MonthAdapter.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/MonthAdapter.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/AccessibleLinearLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/AccessibleLinearLayout.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DatePickerDialog.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DatePickerDialog.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/YearPickerView$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/YearPickerView$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialTextsView$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialTextsView$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DayPickerView$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DayPickerView$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/SimpleMonthView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/SimpleMonthView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/YearPickerView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/YearPickerView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/AmPmCirclesView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/AmPmCirclesView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialTextsView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialTextsView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/HapticFeedbackController.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/HapticFeedbackController.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DatePickerController.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DatePickerController.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DatePickerDialog$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DatePickerDialog$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/SimpleDayPickerView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/SimpleDayPickerView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/SimpleMonthAdapter.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/SimpleMonthAdapter.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialPickerLayout$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialPickerLayout$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialPickerLayout$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialPickerLayout$2.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialPickerLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialPickerLayout.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialSelectorView$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialSelectorView$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialSelectorView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialSelectorView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog$2.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog$3.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog$3.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog$4.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog$4.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/AccessibleLinearLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/AccessibleLinearLayout.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DatePickerDialog$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DatePickerDialog$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DatePickerDialog.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DatePickerDialog.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/SimpleMonthAdapter.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/SimpleMonthAdapter.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/YearPickerView$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/YearPickerView$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialPickerLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialPickerLayout.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialSelectorView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialSelectorView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialTextsView$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialTextsView$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog$2.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog$3.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog$3.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog$4.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog$4.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog.class
--------------------------------------------------------------------------------
/MaterialDesign/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/HapticFeedbackController$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/HapticFeedbackController$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/AccessibleDateAnimator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/AccessibleDateAnimator.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog$Node.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog$Node.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/HapticFeedbackController.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/HapticFeedbackController.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DatePickerController.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DatePickerController.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/SimpleDayPickerView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/SimpleDayPickerView.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialPickerLayout$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialPickerLayout$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialPickerLayout$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialPickerLayout$2.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialSelectorView$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialSelectorView$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/MonthAdapter$CalendarDay.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/MonthAdapter$CalendarDay.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/HapticFeedbackController$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/HapticFeedbackController$1.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/AccessibleDateAnimator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/AccessibleDateAnimator.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog$Node.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog$Node.class
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Apr 10 15:27:10 PDT 2013
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
7 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/anim/snackbar_hide_animation.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/anim/snackbar_show_animation.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/YearPickerView$YearAdapter.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/YearPickerView$YearAdapter.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/MonthAdapter$CalendarDay.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/MonthAdapter$CalendarDay.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/MonthView$MonthViewTouchHelper.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/MonthView$MonthViewTouchHelper.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/MonthView$OnDayClickListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/MonthView$OnDayClickListener.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/TextViewWithCircularIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/TextViewWithCircularIndicator.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/MonthView$OnDayClickListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/MonthView$OnDayClickListener.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/YearPickerView$YearAdapter.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/YearPickerView$YearAdapter.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/proguard.flags:
--------------------------------------------------------------------------------
1 | -keepclassmembers class com.android.datetimepicker.time.RadialSelectorView {
2 | *** setAnimationRadiusMultiplier(...);
3 | }
4 |
5 | -keepclassmembers class com.android.datetimepicker.time.RadialTextsView {
6 | *** setAnimationRadiusMultiplier(...);
7 | }
8 |
--------------------------------------------------------------------------------
/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/MonthView$MonthViewTouchHelper.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/MonthView$MonthViewTouchHelper.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/TextViewWithCircularIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/TextViewWithCircularIndicator.class
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/anim/dialog_root_show_amin.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DatePickerDialog$OnDateSetListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DatePickerDialog$OnDateSetListener.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DayPickerView$ScrollStateRunnable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DayPickerView$ScrollStateRunnable.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog$KeyboardListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog$KeyboardListener.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog$OnTimeSetListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/TimePickerDialog$OnTimeSetListener.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DayPickerView$ScrollStateRunnable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DayPickerView$ScrollStateRunnable.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog$KeyboardListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog$KeyboardListener.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DatePickerDialog$OnDateSetListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DatePickerDialog$OnDateSetListener.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog$OnTimeSetListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/TimePickerDialog$OnTimeSetListener.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DatePickerDialog$OnDateChangedListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/date/DatePickerDialog$OnDateChangedListener.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialTextsView$InvalidateUpdateListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialTextsView$InvalidateUpdateListener.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DatePickerDialog$OnDateChangedListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/date/DatePickerDialog$OnDateChangedListener.class
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/edit_divider_line.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialPickerLayout$OnValueSelectedListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialPickerLayout$OnValueSelectedListener.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialTextsView$InvalidateUpdateListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialTextsView$InvalidateUpdateListener.class
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/layout/number_indicator_spinner.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialSelectorView$InvalidateUpdateListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/debug/com/android/datetimepicker/time/RadialSelectorView$InvalidateUpdateListener.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialPickerLayout$OnValueSelectedListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialPickerLayout$OnValueSelectedListener.class
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialSelectorView$InvalidateUpdateListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zhenghuiy/TodayThing/HEAD/StyleableDateTimePicker/build/intermediates/classes/release/com/android/datetimepicker/time/RadialSelectorView$InvalidateUpdateListener.class
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/listview_divider_line.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/week_picker_layout_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/incremental/mergeAssets/debug/merger.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/incremental/mergeAssets/release/merger.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/incremental/mergeAssets/test/debug/merger.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/values-v11/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/values-v11/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable/background_checkbox.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/values-v14/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/values-v14/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable/background_checkbox_check.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable/background_transparent.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/keep_status.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
10 |
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/res/test/debug/values-v11/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/anim/dialog_root_hide_amin.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
10 |
11 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable/shadow_down.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
10 |
11 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/res/test/debug/values-v14/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
11 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable/background_progress.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/MaterialDesign/src/androidTest/java/com/gc/materialdesign/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package com.gc.materialdesign;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/app/src/androidTest/java/com/zhenghuiyan/todaything/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package com.zhenghuiyan.todaything;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable/background_switch_ball_uncheck.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable/shadow_right.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
6 |
7 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/menu_edit.xml:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable/background_button_rectangle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
5 |
6 | -
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable/background_checkbox_uncheck.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/values-w270dp-h560dp-v13/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 230dp
6 | 80dp
7 | 30dp
8 | 30dp
9 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/values-w270dp-h560dp-v13/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 230dp
6 | 80dp
7 | 30dp
8 | 30dp
9 |
--------------------------------------------------------------------------------
/app/src/main/java/com/zhenghuiyan/todaything/TodayThingApp.java:
--------------------------------------------------------------------------------
1 | package com.zhenghuiyan.todaything;
2 |
3 | import android.app.Application;
4 | import com.zhenghuiyan.todaything.util.MiscUtil;
5 |
6 | /**
7 | * Created by zhenghuiyan on 2015/1/28.
8 | */
9 | public class TodayThingApp extends Application {
10 |
11 | @Override
12 | public void onCreate() {
13 | super.onCreate();
14 | init();
15 | }
16 |
17 | private void init() {
18 | MiscUtil.setAppContext(getApplicationContext());
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/values-land/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 200dip
6 | 250dip
7 | 100dp
8 | 30dp
9 | 30dp
10 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/values-land/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 200dip
6 | 250dip
7 | 100dp
8 | 30dp
9 | 30dp
10 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/res/test/debug/values-w270dp-h560dp-v13/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 230dp
6 | 80dp
7 | 30dp
8 | 30dp
9 |
--------------------------------------------------------------------------------
/app/src/main/java/com/zhenghuiyan/todaything/fragment/BaseFragment.java:
--------------------------------------------------------------------------------
1 | package com.zhenghuiyan.todaything.fragment;
2 |
3 | import android.app.Fragment;
4 | import android.content.Intent;
5 |
6 | import com.zhenghuiyan.todaything.R;
7 |
8 | /**
9 | * Created by zhenghuiyan on 2015/3/20.
10 | */
11 | public class BaseFragment extends Fragment {
12 | @Override
13 | public void onActivityResult(int requestCode, int resultCode, Intent data) {
14 | getActivity().overridePendingTransition(R.anim.keep_status, R.anim.one_scale_zero);
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/anim/dialog_main_show_amination.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
9 |
17 |
18 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/res/test/debug/values-land/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 200dip
6 | 250dip
7 | 100dp
8 | 30dp
9 | 30dp
10 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/generated/source/buildConfig/release/com/android/datetimepicker/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Automatically generated file. DO NOT MODIFY
3 | */
4 | package com.android.datetimepicker;
5 |
6 | public final class BuildConfig {
7 | public static final boolean DEBUG = false;
8 | public static final String APPLICATION_ID = "com.android.datetimepicker";
9 | public static final String BUILD_TYPE = "release";
10 | public static final String FLAVOR = "";
11 | public static final int VERSION_CODE = 1;
12 | public static final String VERSION_NAME = "";
13 | }
14 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/one_scale_zero.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
14 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/zero_scale_one.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
14 |
15 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/drawable/background_button_float.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
5 |
6 | -
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/generated/source/buildConfig/debug/com/android/datetimepicker/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Automatically generated file. DO NOT MODIFY
3 | */
4 | package com.android.datetimepicker;
5 |
6 | public final class BuildConfig {
7 | public static final boolean DEBUG = Boolean.parseBoolean("true");
8 | public static final String APPLICATION_ID = "com.android.datetimepicker";
9 | public static final String BUILD_TYPE = "debug";
10 | public static final String FLAVOR = "";
11 | public static final int VERSION_CODE = 1;
12 | public static final String VERSION_NAME = "";
13 | }
14 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/toolbar.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/generated/source/buildConfig/test/debug/com/android/datetimepicker/test/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Automatically generated file. DO NOT MODIFY
3 | */
4 | package com.android.datetimepicker.test;
5 |
6 | public final class BuildConfig {
7 | public static final boolean DEBUG = Boolean.parseBoolean("true");
8 | public static final String APPLICATION_ID = "com.android.datetimepicker.test";
9 | public static final String BUILD_TYPE = "debug";
10 | public static final String FLAVOR = "";
11 | public static final int VERSION_CODE = -1;
12 | public static final String VERSION_NAME = "";
13 | }
14 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/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-19
15 | android.library=true
16 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'android-library'
2 |
3 | repositories {
4 | mavenCentral()
5 | }
6 |
7 | dependencies {
8 | compile 'com.android.support:support-v4:19.1.0'
9 | }
10 |
11 | android {
12 | compileSdkVersion 19
13 | buildToolsVersion '19.1.0'
14 |
15 | defaultConfig {
16 | minSdkVersion 14
17 | targetSdkVersion 19
18 | }
19 |
20 | sourceSets {
21 | main {
22 | manifest.srcFile 'AndroidManifest.xml'
23 | java.srcDirs = ['src']
24 | resources.srcDirs = ['src']
25 | res.srcDirs = ['res']
26 | }
27 | }
28 | lintOptions {
29 | abortOnError false
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # TodayThing
2 | 一款简单的 Material Design 风格的 to do list 应用,当时是为了尝试 Material Design 而做,因此项目结构简单
3 |
4 | # ScreenShots
5 | 
6 | 
7 | 
8 | 
9 |
10 | # 感谢以下库作者和组织
11 | - [MaterialDesignLibrary](https://github.com/navasmdc/MaterialDesignLibrary) 提供在低版本使用的 Material Design 控件
12 | - [StyleableDateTimePicker](https://github.com/appcube/StyleableDateTimePicker) 时间选择组件
13 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/anim/dialog_main_hide_amination.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in E:\androidStudio\a_sdk/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/res/test/debug/values-v16/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | sans-serif-light
6 |
9 |
12 |
15 |
--------------------------------------------------------------------------------
/MaterialDesign/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /Applications/adt-bundle-mac-x86_64-20140321/sdk/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/values-sw600dp-land-v13/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 21sp
6 | 7dip
7 | 45dp
8 | 48dip
9 | 96dip
10 | 315dip
11 | 5dip
12 | 16sp
13 | 64sp
14 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/values-sw600dp-land-v13/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 21sp
6 | 7dip
7 | 45dp
8 | 48dip
9 | 96dip
10 | 315dip
11 | 5dip
12 | 16sp
13 | 64sp
14 |
--------------------------------------------------------------------------------
/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/menu_main.xml:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_setting.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
10 |
18 |
--------------------------------------------------------------------------------
/app/src/main/java/com/zhenghuiyan/todaything/util/StringUtil.java:
--------------------------------------------------------------------------------
1 | package com.zhenghuiyan.todaything.util;
2 |
3 | import java.util.regex.Matcher;
4 | import java.util.regex.Pattern;
5 |
6 | /**
7 | * Created by zhenghuiyan on 2015/3/4.
8 | */
9 | public class StringUtil {
10 | private StringUtil() {}
11 |
12 | /**
13 | * 检测邮箱地址是否合法
14 | * @param email
15 | * @return true合法 false不合法
16 | */
17 | public static boolean isEmail(String email){
18 | if (null==email || "".equals(email)) return false;
19 | // Pattern p = Pattern.compile("\\w+@(\\w+.)+[a-z]{2,3}"); //简单匹配
20 | Pattern p = Pattern.compile("\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*");//复杂匹配
21 | Matcher m = p.matcher(email);
22 | return m.matches();
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/res/test/debug/values-sw600dp-land-v13/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 21sp
6 | 7dip
7 | 45dp
8 | 48dip
9 | 96dip
10 | 315dip
11 | 5dip
12 | 16sp
13 | 64sp
14 |
--------------------------------------------------------------------------------
/app/src/main/java/com/zhenghuiyan/todaything/task/SimpleNoCallbackTask.java:
--------------------------------------------------------------------------------
1 | package com.zhenghuiyan.todaything.task;
2 |
3 | import android.os.AsyncTask;
4 |
5 | /**
6 | * Created by zhenghuiyan on 2015/4/14.
7 | */
8 | public abstract class SimpleNoCallbackTask extends AsyncTask {
9 |
10 | protected SimpleNoCallbackTask() {
11 | }
12 |
13 | @Override
14 | protected void onPreExecute() {
15 | }
16 |
17 | @Override
18 | protected Void doInBackground(Void... params) {
19 | try {
20 | doInBack();
21 | } catch (Exception e) {
22 | e.printStackTrace();
23 | }
24 | return null;
25 | }
26 |
27 | @Override
28 | protected void onPostExecute(Void aVoid) {}
29 |
30 | protected abstract void doInBack();
31 | }
--------------------------------------------------------------------------------
/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/manifests/tmp/manifestMerger7612652447339560018.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
16 |
17 |
--------------------------------------------------------------------------------
/app/src/main/res/values/color.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | #2196F3
5 |
6 | #1974D2
7 |
8 | #03A9F4
9 |
10 | #212121
11 |
12 | #BBDEFB
13 |
14 | #727272
15 |
16 | #FFFFFF
17 |
18 | #B6B6B6
19 |
20 | #F7F7F7
21 |
22 |
23 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/values/attrs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/res/anim/progress_indeterminate_animation.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/values-v16/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | sans-serif-light
6 |
7 |
8 |
11 |
14 |
17 |
--------------------------------------------------------------------------------
/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 |
3 | android {
4 | compileSdkVersion 21
5 | buildToolsVersion "21.1.2"
6 |
7 | defaultConfig {
8 | applicationId "com.zhenghuiyan.todaything"
9 | minSdkVersion 14
10 | targetSdkVersion 21
11 | versionCode 1
12 | versionName "1.0"
13 | }
14 | buildTypes {
15 | release {
16 | minifyEnabled false
17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18 | }
19 | }
20 | }
21 |
22 | dependencies {
23 | compile fileTree(dir: 'libs', include: ['*.jar'])
24 | compile 'com.android.support:appcompat-v7:21.0.3'
25 | compile project(':StyleableDateTimePicker')
26 | compile project(':MaterialDesign')
27 | compile 'com.android.support:cardview-v7:21.0.3'
28 | }
29 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/values-v16/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | sans-serif-light
6 |
7 |
8 |
11 |
14 |
17 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/manifests/test/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
8 |
9 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/app/src/main/java/com/zhenghuiyan/todaything/data/ThingDBHelper.java:
--------------------------------------------------------------------------------
1 | package com.zhenghuiyan.todaything.data;
2 |
3 | import android.content.Context;
4 | import android.database.sqlite.SQLiteDatabase;
5 | import android.database.sqlite.SQLiteOpenHelper;
6 |
7 | /**
8 | * Created by zhenghuiyan on 2015/1/27.
9 | */
10 | public class ThingDBHelper extends SQLiteOpenHelper {
11 | public static final int DB_VERSION = 1;
12 |
13 | public static final String DB_NAME = "schedule.db";
14 |
15 | public ThingDBHelper(Context context) {
16 | super(context, DB_NAME, null, DB_VERSION);
17 | }
18 |
19 | @Override
20 | public void onCreate(SQLiteDatabase db) {
21 | ScheduleTable.createTable(db);
22 | // RepeatRecordTable.createTable(db);
23 | }
24 |
25 | @Override
26 | public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
27 |
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_main_menu.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
17 |
23 |
24 |
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
--------------------------------------------------------------------------------
/TodayThing.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/values-v16/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 | sans-serif-light
20 |
21 |
--------------------------------------------------------------------------------
/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 | 72dp
6 | 48dp
7 | 48dp
8 | 8dp
9 | 72dp
10 | 16dp
11 | 48dp
12 |
13 |
14 | 20sp
15 | 34sp
16 | 14sp
17 | 14sp
18 | 14sp
19 |
20 | 38dp
21 | 14dp
22 |
23 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
7 |
8 |
10 |
14 |
15 |
20 |
21 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/color/done_text_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/color/done_text_color_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/color/date_picker_year_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
21 |
22 |
--------------------------------------------------------------------------------
/app/src/main/java/com/zhenghuiyan/todaything/util/DateUtil.java:
--------------------------------------------------------------------------------
1 | package com.zhenghuiyan.todaything.util;
2 |
3 | import java.text.ParseException;
4 | import java.text.SimpleDateFormat;
5 | import java.util.Calendar;
6 | import java.util.Date;
7 |
8 | /**
9 | * Created by zhenghuiyan on 2015/1/28.
10 | */
11 | public class DateUtil {
12 | public static final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
13 |
14 | private DateUtil() {}
15 |
16 | public static String dateToString(Date d) {
17 | return dateFormat.format(d);
18 | }
19 |
20 | public static Date parseDate(String s) {
21 | try {
22 | return dateFormat.parse(s);
23 | } catch (ParseException e) {
24 | e.printStackTrace();
25 | }
26 |
27 | return null;
28 | }
29 |
30 | public static int getDayOfWeek(Date date) {
31 | if (date == null) {
32 | return -1;
33 | }
34 | Calendar c = Calendar.getInstance();
35 | c.setTime(date);
36 |
37 | return c.get(Calendar.DAY_OF_WEEK);
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/java/com/gc/materialdesign/utils/Utils.java:
--------------------------------------------------------------------------------
1 | package com.gc.materialdesign.utils;
2 |
3 | import android.content.res.Resources;
4 | import android.util.TypedValue;
5 | import android.view.View;
6 |
7 | public class Utils {
8 |
9 |
10 | /**
11 | * Convert Dp to Pixel
12 | */
13 | public static int dpToPx(float dp, Resources resources){
14 | float px = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, resources.getDisplayMetrics());
15 | return (int) px;
16 | }
17 |
18 | public static int getRelativeTop(View myView) {
19 | // if (myView.getParent() == myView.getRootView())
20 | if(myView.getId() == android.R.id.content)
21 | return myView.getTop();
22 | else
23 | return myView.getTop() + getRelativeTop((View) myView.getParent());
24 | }
25 |
26 | public static int getRelativeLeft(View myView) {
27 | // if (myView.getParent() == myView.getRootView())
28 | if(myView.getId() == android.R.id.content)
29 | return myView.getLeft();
30 | else
31 | return myView.getLeft() + getRelativeLeft((View) myView.getParent());
32 | }
33 |
34 | }
35 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
20 |
21 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/color/done_text_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/color/done_text_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/layout/date_picker_view_animator.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/java/com/gc/materialdesign/views/ScrollView.java:
--------------------------------------------------------------------------------
1 | package com.gc.materialdesign.views;
2 |
3 | import android.content.Context;
4 | import android.util.AttributeSet;
5 | import android.view.MotionEvent;
6 | import android.view.View;
7 | import android.view.ViewGroup;
8 |
9 |
10 | public class ScrollView extends android.widget.ScrollView {
11 |
12 | /*
13 | * This class avoid problems in scrollviews with elements in library
14 | * Use it if you want use a ScrollView in your App
15 | */
16 |
17 | public ScrollView(Context context, AttributeSet attrs) {
18 | super(context, attrs);
19 | }
20 |
21 | @Override
22 | public boolean onTouchEvent(MotionEvent ev) {
23 | // if(!onInterceptTouchEvent(ev)){
24 | for(int i = 0; i < ((ViewGroup)getChildAt(0)).getChildCount(); i++){
25 | try {
26 | CustomView child =(CustomView) ((ViewGroup)getChildAt(0)).getChildAt(i);
27 | if(child.isLastTouch){
28 | child.onTouchEvent(ev);
29 | return true;
30 | }
31 | } catch (ClassCastException e) {
32 | }
33 | }
34 | // }
35 | return super.onTouchEvent(ev);
36 | }
37 |
38 |
39 | }
40 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/Android.mk:
--------------------------------------------------------------------------------
1 | # Copyright (C) 2013 The Android Open Source Project
2 | #
3 | # Licensed under the Apache License, Version 2.0 (the "License");
4 | # you may not use this file except in compliance with the License.
5 | # You may obtain a copy of the License at
6 | #
7 | # http://www.apache.org/licenses/LICENSE-2.0
8 | #
9 | # Unless required by applicable law or agreed to in writing, software
10 | # distributed under the License is distributed on an "AS IS" BASIS,
11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 | # See the License for the specific language governing permissions and
13 | # limitations under the License.
14 |
15 | LOCAL_PATH := $(call my-dir)
16 | include $(CLEAR_VARS)
17 |
18 | LOCAL_MODULE := android-opt-datetimepicker
19 |
20 | LOCAL_SDK_VERSION := 17
21 |
22 | LOCAL_SRC_FILES := \
23 | $(call all-java-files-under, src) \
24 | $(call all-logtags-files-under, src)
25 |
26 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
27 |
28 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4
29 |
30 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags
31 |
32 | include $(BUILD_STATIC_JAVA_LIBRARY)
33 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/drawable-land/done_background_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/drawable/done_background_color_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/app/src/main/java/com/zhenghuiyan/todaything/widget/WeekButton.java:
--------------------------------------------------------------------------------
1 | package com.zhenghuiyan.todaything.widget;
2 |
3 | import android.content.Context;
4 | import android.util.AttributeSet;
5 | import android.widget.CheckBox;
6 | import android.widget.CompoundButton;
7 |
8 | import com.zhenghuiyan.todaything.R;
9 | import com.zhenghuiyan.todaything.util.MiscUtil;
10 |
11 | /**
12 | * Created by zhenghuiyan on 2015/2/5.
13 | */
14 | public class WeekButton extends CheckBox {
15 |
16 | public WeekButton(Context context, AttributeSet attrs) {
17 | super(context, attrs);
18 | setOnCheckedChangeListener(new OnCheckedChangeListener() {
19 | @Override
20 | public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
21 | if (isChecked) {
22 | WeekButton.this.setTextColor(MiscUtil.getAppContext().getResources().getColor(android.R.color.white));
23 | } else {
24 | WeekButton.this.setTextColor(MiscUtil.getAppContext().getResources().getColor(R.color.secondary_text));
25 | }
26 | }
27 | });
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014 Appcube
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/color/done_text_color_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/drawable-land/done_background_color_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/drawable/done_background_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/color/done_text_color_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/drawable-land-v19/done_background_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/drawable-v19/done_background_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/app/src/main/java/com/zhenghuiyan/todaything/data/ScheduleContract.java:
--------------------------------------------------------------------------------
1 | package com.zhenghuiyan.todaything.data;
2 |
3 | import android.provider.BaseColumns;
4 |
5 | /**
6 | * Created by zhenghuiyan on 2015/1/27.
7 | */
8 | public final class ScheduleContract {
9 |
10 | public ScheduleContract() {}
11 |
12 | public static abstract class ScheduleContractEntry implements BaseColumns {
13 | public static final String TABLE_NAME = "Schedule";
14 |
15 | public static final String COLUMN_NAME_ID = "id";
16 |
17 | public static final String COLUMN_NAME_STIME = "s_time";
18 |
19 | public static final String COLUMN_NAME_CONTENT = "content";
20 |
21 | public static final String COLUMN_NAME_FROM_TIME = "from_time";
22 |
23 | public static final String COLUMN_NAME_TO_TIME = "to_time";
24 |
25 | public static final String COLUMN_NAME_COMPLETE_DATE = "complete_date";
26 |
27 | public static final String COLUMN_NAME_THING_ID = "thing_id";
28 |
29 | public static final String COLUMN_NAME_WEEK_NUM = "week_num";
30 |
31 | public static final String DEFAULT_DATE = "2000-01-01";
32 |
33 |
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
21 |
22 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
21 |
22 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/color/date_picker_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
22 |
23 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/values-w270dp-h560dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
23 |
24 | 230dp
25 | 30dp
26 | 80dp
27 | 30dp
28 |
--------------------------------------------------------------------------------
/app/src/main/java/com/zhenghuiyan/todaything/bean/ThingMenuItem.java:
--------------------------------------------------------------------------------
1 | package com.zhenghuiyan.todaything.bean;
2 |
3 | import com.zhenghuiyan.todaything.constant.FragmentName;
4 |
5 | /**
6 | * Created by zhenghuiyan on 2015/1/30.
7 | */
8 | public class ThingMenuItem {
9 | private FragmentName fragmentName;
10 |
11 | private int drawableId;
12 |
13 | private String name;
14 |
15 | private boolean isSelected;
16 |
17 | public FragmentName getFragmentName() {
18 | return fragmentName;
19 | }
20 |
21 | public void setFragmentName(FragmentName fragmentName) {
22 | this.fragmentName = fragmentName;
23 | }
24 |
25 | public boolean isSelected() {
26 | return isSelected;
27 | }
28 |
29 | public void setSelected(boolean isSelected) {
30 | this.isSelected = isSelected;
31 | }
32 |
33 | public int getDrawableId() {
34 | return drawableId;
35 | }
36 |
37 | public void setDrawableId(int drawableId) {
38 | this.drawableId = drawableId;
39 | }
40 |
41 | public String getName() {
42 | return name;
43 | }
44 |
45 | public void setName(String name) {
46 | this.name = name;
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/values-land/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
23 | 200dip
24 | 250dip
25 |
26 | 30dp
27 | 100dp
28 | 30dp
29 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/color/date_picker_year_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
21 |
22 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/color/date_picker_year_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
21 |
22 |
--------------------------------------------------------------------------------
/MaterialDesign/src/main/java/com/gc/materialdesign/views/ButtonFloatSmall.java:
--------------------------------------------------------------------------------
1 | package com.gc.materialdesign.views;
2 |
3 | import com.gc.materialdesign.R;
4 | import com.gc.materialdesign.utils.Utils;
5 |
6 | import android.content.Context;
7 | import android.util.AttributeSet;
8 | import android.widget.RelativeLayout;
9 |
10 | public class ButtonFloatSmall extends ButtonFloat {
11 |
12 | public ButtonFloatSmall(Context context, AttributeSet attrs) {
13 | super(context, attrs);
14 | sizeRadius = 20;
15 | sizeIcon = 20;
16 | setDefaultProperties();
17 | LayoutParams params = new LayoutParams(Utils.dpToPx(sizeIcon, getResources()),Utils.dpToPx(sizeIcon, getResources()));
18 | params.addRule(RelativeLayout.CENTER_IN_PARENT, RelativeLayout.TRUE);
19 | icon.setLayoutParams(params);
20 | }
21 |
22 | protected void setDefaultProperties(){
23 | rippleSpeed = Utils.dpToPx(2, getResources());
24 | rippleSize = 10;
25 | // Min size
26 | setMinimumHeight(Utils.dpToPx(sizeRadius*2, getResources()));
27 | setMinimumWidth(Utils.dpToPx(sizeRadius*2, getResources()));
28 | // Background shape
29 | setBackgroundResource(R.drawable.background_button_float);
30 | // setBackgroundColor(backgroundColor);
31 | }
32 |
33 | }
34 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/layout/year_label_text_view.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/res/test/debug/color/done_text_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/src/com/android/datetimepicker/date/SimpleMonthAdapter.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (C) 2013 The Android Open Source Project
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | */
16 |
17 | package com.android.datetimepicker.date;
18 |
19 | import android.content.Context;
20 |
21 | /**
22 | * An adapter for a list of {@link SimpleMonthView} items.
23 | */
24 | public class SimpleMonthAdapter extends MonthAdapter {
25 |
26 | public SimpleMonthAdapter(Context context, DatePickerController controller) {
27 | super(context, controller);
28 | }
29 |
30 | @Override
31 | public MonthView createMonthView(Context context) {
32 | return new SimpleMonthView(context);
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/layout/date_picker_view_animator.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/values-zh-rCN/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | "按月份划分的日期网格"
6 | "已删除 %1$s"
7 | "完成"
8 | "小时转盘"
9 | "已选择 %1$s"
10 | "分钟转盘"
11 | "选择月份和日期"
12 | "选择小时"
13 | "选择分钟"
14 | "选择年份"
15 | "年份列表"
16 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/layout/date_picker_view_animator.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/res/test/debug/color/done_text_color_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/layout/date_picker_header_view.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
27 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/res/values-v16/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
22 |
23 |
26 |
27 |
30 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/drawable-land/done_background_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/values-zh-rCN/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | "按月份划分的日期网格"
6 | "已删除 %1$s"
7 | "完成"
8 | "小时转盘"
9 | "已选择 %1$s"
10 | "分钟转盘"
11 | "选择月份和日期"
12 | "选择小时"
13 | "选择分钟"
14 | "选择年份"
15 | "年份列表"
16 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/drawable/done_background_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/drawable/done_background_color_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/values-ja/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | "日グリッド(月別)"
6 | "%1$sを削除しました"
7 | "完了"
8 | "円形スライダー(時)"
9 | "%1$sを選択しました"
10 | "円形スライダー(分)"
11 | "月と日を選択"
12 | "時間を選択"
13 | "分を選択"
14 | "年を選択"
15 | "年リスト"
16 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/values-ko/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | "월별 바둑판식 날짜 표시"
6 | "%1$s 삭제됨"
7 | "완료"
8 | "시간 원형 슬라이더"
9 | "%1$s이(가) 선택됨"
10 | "분 원형 슬라이더"
11 | "월/일 선택"
12 | "시간 선택"
13 | "분 선택"
14 | "연도 선택"
15 | "년"
16 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/values-zh-rTW/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | "日期網格 (按月顯示)"
6 | "已刪除 %1$s"
7 | "完成"
8 | "小時數循環滑桿"
9 | "已選取 %1$s"
10 | "分鐘數循環滑桿"
11 | "選取月份和日期"
12 | "選取小時數"
13 | "選取分鐘數"
14 | "選取年份"
15 | "年份清單"
16 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/drawable-land/done_background_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/drawable/done_background_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/drawable/done_background_color_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/values-ko/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | "월별 바둑판식 날짜 표시"
6 | "%1$s 삭제됨"
7 | "완료"
8 | "시간 원형 슬라이더"
9 | "%1$s이(가) 선택됨"
10 | "분 원형 슬라이더"
11 | "월/일 선택"
12 | "시간 선택"
13 | "분 선택"
14 | "연도 선택"
15 | "년"
16 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/values-ja/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | "日グリッド(月別)"
6 | "%1$sを削除しました"
7 | "完了"
8 | "円形スライダー(時)"
9 | "%1$sを選択しました"
10 | "円形スライダー(分)"
11 | "月と日を選択"
12 | "時間を選択"
13 | "分を選択"
14 | "年を選択"
15 | "年リスト"
16 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/values-zh-rTW/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | "日期網格 (按月顯示)"
6 | "已刪除 %1$s"
7 | "完成"
8 | "小時數循環滑桿"
9 | "已選取 %1$s"
10 | "分鐘數循環滑桿"
11 | "選取月份和日期"
12 | "選取小時數"
13 | "選取分鐘數"
14 | "選取年份"
15 | "年份清單"
16 |
--------------------------------------------------------------------------------
/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
17 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/drawable-land/done_background_color_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/drawable-land/done_background_color_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/color/date_picker_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
22 |
23 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/drawable-land-v19/done_background_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/drawable-v19/done_background_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/color/date_picker_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
22 |
23 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/drawable-land-v19/done_background_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/drawable-v19/done_background_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
20 |
21 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/res/test/debug/values-zh-rCN/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | "按月份划分的日期网格"
6 | "已删除 %1$s"
7 | "完成"
8 | "小时转盘"
9 | "已选择 %1$s"
10 | "分钟转盘"
11 | "选择月份和日期"
12 | "选择小时"
13 | "选择分钟"
14 | "选择年份"
15 | "年份列表"
16 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/listview_all_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
18 |
29 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/listview_thing_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
18 |
29 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/res/test/debug/values-ja/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | "日グリッド(月別)"
6 | "%1$sを削除しました"
7 | "完了"
8 | "円形スライダー(時)"
9 | "%1$sを選択しました"
10 | "円形スライダー(分)"
11 | "月と日を選択"
12 | "時間を選択"
13 | "分を選択"
14 | "年を選択"
15 | "年リスト"
16 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/res/test/debug/values-ko/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | "월별 바둑판식 날짜 표시"
6 | "%1$s 삭제됨"
7 | "완료"
8 | "시간 원형 슬라이더"
9 | "%1$s이(가) 선택됨"
10 | "분 원형 슬라이더"
11 | "월/일 선택"
12 | "시간 선택"
13 | "분 선택"
14 | "연도 선택"
15 | "년"
16 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/res/test/debug/values-zh-rTW/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | "日期網格 (按月顯示)"
6 | "已刪除 %1$s"
7 | "完成"
8 | "小時數循環滑桿"
9 | "已選取 %1$s"
10 | "分鐘數循環滑桿"
11 | "選取月份和日期"
12 | "選取小時數"
13 | "選取分鐘數"
14 | "選取年份"
15 | "年份清單"
16 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/debug/res/values-am/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | "የቀናት የወር ፍርግርግ"
6 | "%1$s ተሰርዟል"
7 | "ተከናውኗል"
8 | "የሰዓታት ክብ ተንሸራታች"
9 | "%1$s ተመርጧል"
10 | "የደቂቃዎች ክብ ተንሸራታች"
11 | "ወር እና ቀን ይምረጡ"
12 | "ሰዓታትን ምረጥ"
13 | "ደቂቃዎችን ምረጥ"
14 | "ዓመት ይምረጡ"
15 | "የዓመት ዝርዝር"
16 |
--------------------------------------------------------------------------------
/StyleableDateTimePicker/build/intermediates/bundles/release/res/values-am/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | "የቀናት የወር ፍርግርግ"
6 | "%1$s ተሰርዟል"
7 | "ተከናውኗል"
8 | "የሰዓታት ክብ ተንሸራታች"
9 | "%1$s ተመርጧል"
10 | "የደቂቃዎች ክብ ተንሸራታች"
11 | "ወር እና ቀን ይምረጡ"
12 | "ሰዓታትን ምረጥ"
13 | "ደቂቃዎችን ምረጥ"
14 | "ዓመት ይምረጡ"
15 | "የዓመት ዝርዝር"
16 |
--------------------------------------------------------------------------------