├── AndroidManifest.xml ├── Dayplan.png ├── README.md ├── assets └── fonts │ ├── EvernotePuck-Light.otf │ ├── EvernotePuck-Regular.otf │ └── RobotoSlab │ ├── RobotoSlab-Bold.ttf │ ├── RobotoSlab-Light.ttf │ ├── RobotoSlab-Regular.ttf │ └── RobotoSlab-Thin.ttf ├── bin ├── AndroidManifest.xml ├── DayPlan.apk ├── classes.dex ├── classes │ └── cn │ │ └── edu │ │ └── zju │ │ └── isee │ │ └── www │ │ └── dayplan │ │ ├── AlarmActivity$1.class │ │ ├── AlarmActivity.class │ │ ├── BuildConfig.class │ │ ├── DatePickerFragment$1.class │ │ ├── DatePickerFragment$2.class │ │ ├── DatePickerFragment.class │ │ ├── DayPlanJSONSerializer.class │ │ ├── ImageActivity.class │ │ ├── ImageFragment.class │ │ ├── ImageUtils.class │ │ ├── Photo.class │ │ ├── Plan.class │ │ ├── PlanCameraActivity.class │ │ ├── PlanCameraFragment$1.class │ │ ├── PlanCameraFragment$2.class │ │ ├── PlanCameraFragment$3.class │ │ ├── PlanCameraFragment$4.class │ │ ├── PlanCameraFragment.class │ │ ├── PlanEditActivity.class │ │ ├── PlanEditFragment$1.class │ │ ├── PlanEditFragment$2.class │ │ ├── PlanEditFragment$3.class │ │ ├── PlanEditFragment$4.class │ │ ├── PlanEditFragment$5.class │ │ ├── PlanEditFragment$6.class │ │ ├── PlanEditFragment$7$1.class │ │ ├── PlanEditFragment$7.class │ │ ├── PlanEditFragment$8.class │ │ ├── PlanEditFragment.class │ │ ├── PlanListActivity.class │ │ ├── PlanListFragment$1.class │ │ ├── PlanListFragment$PlanAdapter.class │ │ ├── PlanListFragment.class │ │ ├── PlanListScrollView$1.class │ │ ├── PlanListScrollView.class │ │ ├── PlanListView.class │ │ ├── PlanPagerActivity$1.class │ │ ├── PlanPagerActivity.class │ │ ├── R$attr.class │ │ ├── R$dimen.class │ │ ├── R$drawable.class │ │ ├── R$id.class │ │ ├── R$layout.class │ │ ├── R$menu.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ ├── R.class │ │ ├── SingleActivity.class │ │ ├── SinglePlanLab.class │ │ ├── TypeSelectActivity.class │ │ ├── TypeSelectFragment$1.class │ │ ├── TypeSelectFragment.class │ │ └── ZoomImageView.class ├── dexedLibs │ └── android-support-v4-6b5e97bbca70b3d64cded5763cb4e47a.jar ├── jarlist.cache ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ ├── bottom_bar.9.png │ │ ├── btn_know_nor.png │ │ ├── btn_know_pre.png │ │ ├── ic_launcher.png │ │ ├── message_selected.png │ │ ├── message_unselected.png │ │ ├── news_selected.png │ │ ├── news_unselected.png │ │ ├── setting_unselected.png │ │ ├── tab_bg.9.png │ │ ├── tab_settings_normal.png │ │ └── tab_settings_pressed.png │ │ ├── drawable-mdpi │ │ └── reminder.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ └── drawable-xxhdpi │ │ └── ic_launcher.png └── resources.ap_ ├── gen └── cn │ └── edu │ └── zju │ └── isee │ └── www │ └── dayplan │ ├── BuildConfig.java │ └── R.java ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── bottom_bar.9.png │ ├── btn_know_nor.png │ ├── btn_know_pre.png │ ├── ic_launcher.png │ ├── message_selected.png │ ├── message_unselected.png │ ├── news_selected.png │ ├── news_unselected.png │ ├── setting_unselected.png │ ├── tab_bg.9.png │ ├── tab_settings_normal.png │ └── tab_settings_pressed.png ├── drawable-mdpi │ ├── background_snippet_nodivider.9.png │ └── reminder.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── drawable │ └── background_activated.xml ├── layout │ ├── activity_alarm.xml │ ├── activity_fragment.xml │ ├── activity_main.xml │ ├── dialog_date.xml │ ├── dialog_type.xml │ ├── fragment_image.xml │ ├── fragment_list_plan.xml │ ├── fragment_plan_camera.xml │ ├── fragment_plan_edit.xml │ └── item_list_plan.xml ├── menu │ ├── fragment_plan_list.xml │ ├── main.xml │ └── plan_list_item_context.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml ├── values-w820dp │ └── dimens.xml └── values │ ├── dimens.xml │ ├── ids.xml │ ├── strings.xml │ └── styles.xml └── src └── cn └── edu └── zju └── isee └── www └── dayplan ├── AlarmActivity.java ├── DatePickerFragment.java ├── DayPlanJSONSerializer.java ├── ImageActivity.java ├── ImageFragment.java ├── ImageUtils.java ├── Photo.java ├── Plan.java ├── PlanCameraActivity.java ├── PlanCameraFragment.java ├── PlanEditActivity.java ├── PlanEditFragment.java ├── PlanListActivity.java ├── PlanListFragment.java ├── PlanListScrollView.java ├── PlanListView.java ├── PlanPagerActivity.java ├── SingleActivity.java ├── SinglePlanLab.java ├── TypeSelectActivity.java ├── TypeSelectFragment.java └── ZoomImageView.java /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 34 | 35 | 38 | 39 | 40 | 42 | 43 | 44 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Dayplan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/Dayplan.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DayPlan 时间管理APP 2 | 3 | ## 需求分析 4 | 5 | 当前,市场上有足够多的优秀日程管理应用,如Wunderlist等。这些应用大多提供日程记录、日程优先级、闹钟提醒、同步等功能。但这些应用的任务事项时间跨度都比较大、期限也比较长。这虽然有利于把握大的方向,但对于短期内效率的提高不一定有很好的效果。从另一个角度上看,养成良好的时间管理习惯,既需要着眼于长远的目标,也需要有具体的、可行的短期实践方案。所谓短期,我认为一天比较合适。 6 | 7 | 因此,DayPlan并不致力于像Wunderlist一样具有十分全面的功能,而是专注于为拖拉者做好一天(甚至更短)的规划,通过简单的提醒及时检查、纠偏,让拖拉者逐渐成长为高效的成功人士。 8 | 9 | ## 功能简介 10 | 11 | ### 规划功能 12 | 13 | 用户可以在前一天晚上做好第二天的规划,添加必要的任务事项,包括任务描述,任务的紧迫性(重要紧迫、重要不紧迫、紧迫不重要、不紧迫不重要),截止时间,并且可以添加一张相关的图片作为提示。 14 | 15 | ### 提醒功能 16 | 17 | ​ 用户可以为每个事项添加提醒功能,每当截止时间到的时候,DayPlan给出一个简短的提醒。DayPlan致力于在提醒用户的同时不过分打扰用户。 18 | 19 | ### 分享功能 20 | 21 | DayPlan可以从某个任务生成一个描述该任务的字符串,并分享到其他应用。 22 | 23 | ## 系统架构 24 | 25 | - 模型层 26 | 27 | - 视图层 28 | 29 | - 控制层 30 | 31 | ![aypla](Dayplan.png) 32 | 33 | -------------------------------------------------------------------------------- /assets/fonts/EvernotePuck-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/assets/fonts/EvernotePuck-Light.otf -------------------------------------------------------------------------------- /assets/fonts/EvernotePuck-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/assets/fonts/EvernotePuck-Regular.otf -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/assets/fonts/RobotoSlab/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/RobotoSlab-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/assets/fonts/RobotoSlab/RobotoSlab-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/assets/fonts/RobotoSlab/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/RobotoSlab-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/assets/fonts/RobotoSlab/RobotoSlab-Thin.ttf -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 29 | 30 | 32 | 34 | 35 | 38 | 39 | 40 | 42 | 43 | 44 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /bin/DayPlan.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/DayPlan.apk -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes.dex -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/AlarmActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/AlarmActivity$1.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/AlarmActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/AlarmActivity.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/DatePickerFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/DatePickerFragment$1.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/DatePickerFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/DatePickerFragment$2.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/DatePickerFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/DatePickerFragment.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/DayPlanJSONSerializer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/DayPlanJSONSerializer.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/ImageActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/ImageActivity.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/ImageFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/ImageFragment.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/ImageUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/ImageUtils.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/Photo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/Photo.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/Plan.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/Plan.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanCameraActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanCameraActivity.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanCameraFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanCameraFragment$1.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanCameraFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanCameraFragment$2.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanCameraFragment$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanCameraFragment$3.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanCameraFragment$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanCameraFragment$4.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanCameraFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanCameraFragment.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditActivity.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$1.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$2.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$3.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$4.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$5.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$6.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$7$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$7$1.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$7.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment$8.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanEditFragment.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanListActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanListActivity.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanListFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanListFragment$1.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanListFragment$PlanAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanListFragment$PlanAdapter.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanListFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanListFragment.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanListScrollView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanListScrollView$1.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanListScrollView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanListScrollView.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanListView.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanPagerActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanPagerActivity$1.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/PlanPagerActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/PlanPagerActivity.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/R$attr.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/R$id.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/R$layout.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/R$menu.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/R$string.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/R$style.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/R.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/SingleActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/SingleActivity.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/SinglePlanLab.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/SinglePlanLab.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/TypeSelectActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/TypeSelectActivity.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/TypeSelectFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/TypeSelectFragment$1.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/TypeSelectFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/TypeSelectFragment.class -------------------------------------------------------------------------------- /bin/classes/cn/edu/zju/isee/www/dayplan/ZoomImageView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/classes/cn/edu/zju/isee/www/dayplan/ZoomImageView.class -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-6b5e97bbca70b3d64cded5763cb4e47a.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/dexedLibs/android-support-v4-6b5e97bbca70b3d64cded5763cb4e47a.jar -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/bottom_bar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/res/crunch/drawable-hdpi/bottom_bar.9.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/btn_know_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/res/crunch/drawable-hdpi/btn_know_nor.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/btn_know_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/res/crunch/drawable-hdpi/btn_know_pre.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/message_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/res/crunch/drawable-hdpi/message_selected.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/message_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/res/crunch/drawable-hdpi/message_unselected.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/news_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/res/crunch/drawable-hdpi/news_selected.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/news_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/res/crunch/drawable-hdpi/news_unselected.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/setting_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/res/crunch/drawable-hdpi/setting_unselected.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/tab_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/res/crunch/drawable-hdpi/tab_bg.9.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/tab_settings_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/res/crunch/drawable-hdpi/tab_settings_normal.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/tab_settings_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/res/crunch/drawable-hdpi/tab_settings_pressed.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/res/crunch/drawable-mdpi/reminder.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/bin/resources.ap_ -------------------------------------------------------------------------------- /gen/cn/edu/zju/isee/www/dayplan/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package cn.edu.zju.isee.www.dayplan; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /gen/cn/edu/zju/isee/www/dayplan/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package cn.edu.zju.isee.www.dayplan; 9 | 10 | public final class R { 11 | public static final class attr { 12 | } 13 | public static final class dimen { 14 | /** Default screen margins, per the Android Design guidelines. 15 | 16 | Example customization of dimensions originally defined in res/values/dimens.xml 17 | (such as screen margins) for screens with more than 820dp of available width. This 18 | would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively). 19 | 20 | */ 21 | public static final int activity_horizontal_margin=0x7f040000; 22 | public static final int activity_vertical_margin=0x7f040001; 23 | } 24 | public static final class drawable { 25 | public static final int background_activated=0x7f020000; 26 | public static final int background_snippet_nodivider=0x7f020001; 27 | public static final int bottom_bar=0x7f020002; 28 | public static final int btn_know_nor=0x7f020003; 29 | public static final int btn_know_pre=0x7f020004; 30 | public static final int ic_launcher=0x7f020005; 31 | public static final int message_selected=0x7f020006; 32 | public static final int message_unselected=0x7f020007; 33 | public static final int news_selected=0x7f020008; 34 | public static final int news_unselected=0x7f020009; 35 | public static final int reminder=0x7f02000a; 36 | public static final int setting_unselected=0x7f02000b; 37 | public static final int tab_bg=0x7f02000c; 38 | public static final int tab_settings_normal=0x7f02000d; 39 | public static final int tab_settings_pressed=0x7f02000e; 40 | } 41 | public static final class id { 42 | public static final int action_settings=0x7f05002c; 43 | public static final int contacts_image=0x7f050007; 44 | public static final int contacts_layout=0x7f050006; 45 | public static final int contacts_text=0x7f050008; 46 | public static final int content=0x7f050002; 47 | public static final int dialog_date_datePicker=0x7f05000f; 48 | public static final int first_column=0x7f050016; 49 | public static final int fragmentContainer=0x7f050001; 50 | public static final int image=0x7f050014; 51 | public static final int menu_item_delete_plan=0x7f05002d; 52 | public static final int menu_item_new_plan=0x7f05002b; 53 | public static final int message_image=0x7f050004; 54 | public static final int message_layout=0x7f050003; 55 | public static final int message_text=0x7f050005; 56 | public static final int news_image=0x7f05000a; 57 | public static final int news_layout=0x7f050009; 58 | public static final int news_text=0x7f05000b; 59 | public static final int plan_alarmButton=0x7f050020; 60 | public static final int plan_camera_progressContainer=0x7f05001b; 61 | public static final int plan_camera_surfaceView=0x7f050019; 62 | public static final int plan_camera_takePictureButton=0x7f05001a; 63 | public static final int plan_date=0x7f05001f; 64 | public static final int plan_imageButton=0x7f05001d; 65 | public static final int plan_imageView=0x7f05001c; 66 | public static final int plan_list_image=0x7f050028; 67 | public static final int plan_list_isSolved=0x7f050027; 68 | public static final int plan_list_item_detailTextView=0x7f05002a; 69 | public static final int plan_list_item_titleTextView=0x7f050029; 70 | public static final int plan_list_typeImageView=0x7f050026; 71 | public static final int plan_scroll_view=0x7f050015; 72 | public static final int plan_shareButton=0x7f050022; 73 | public static final int plan_solved=0x7f050021; 74 | public static final int plan_staticButton=0x7f050023; 75 | public static final int plan_title=0x7f05001e; 76 | public static final int plan_typeImageView=0x7f050024; 77 | public static final int plan_typeTextView=0x7f050025; 78 | public static final int second_column=0x7f050017; 79 | public static final int setting_image=0x7f05000d; 80 | public static final int setting_layout=0x7f05000c; 81 | public static final int setting_text=0x7f05000e; 82 | public static final int third_column=0x7f050018; 83 | public static final int type_important_easyTextView=0x7f050012; 84 | public static final int type_important_urgentTextView=0x7f050010; 85 | public static final int type_unimportant_easyTextView=0x7f050013; 86 | public static final int type_unimportant_urgentTextView=0x7f050011; 87 | public static final int viewPaper=0x7f050000; 88 | } 89 | public static final class layout { 90 | public static final int activity_alarm=0x7f030000; 91 | public static final int activity_fragment=0x7f030001; 92 | public static final int activity_main=0x7f030002; 93 | public static final int dialog_date=0x7f030003; 94 | public static final int dialog_type=0x7f030004; 95 | public static final int fragment_image=0x7f030005; 96 | public static final int fragment_list_plan=0x7f030006; 97 | public static final int fragment_plan_camera=0x7f030007; 98 | public static final int fragment_plan_edit=0x7f030008; 99 | public static final int item_list_plan=0x7f030009; 100 | } 101 | public static final class menu { 102 | public static final int fragment_plan_list=0x7f080000; 103 | public static final int main=0x7f080001; 104 | public static final int plan_list_item_context=0x7f080002; 105 | } 106 | public static final class string { 107 | public static final int action_settings=0x7f060002; 108 | public static final int analyse=0x7f06000e; 109 | public static final int app_name=0x7f060000; 110 | public static final int date_picker_title=0x7f060007; 111 | public static final int delete_plan=0x7f06000b; 112 | public static final int hello_world=0x7f060001; 113 | public static final int hide_subtitle=0x7f06000a; 114 | public static final int new_plan=0x7f060008; 115 | public static final int ok=0x7f06000f; 116 | public static final int plan_solved_label=0x7f060006; 117 | public static final int plan_time_label=0x7f060005; 118 | public static final int plan_title_hint=0x7f060004; 119 | public static final int plan_title_label=0x7f060003; 120 | public static final int share=0x7f06000d; 121 | public static final int show_subtitle=0x7f060009; 122 | public static final int take=0x7f06000c; 123 | public static final int type_dialog_title=0x7f060015; 124 | public static final int type_important_easy=0x7f060012; 125 | public static final int type_important_urgent=0x7f060011; 126 | public static final int type_select_title=0x7f060010; 127 | public static final int type_unimportant_easy=0x7f060014; 128 | public static final int type_unimportant_urgent=0x7f060013; 129 | } 130 | public static final class style { 131 | /** 132 | Base application theme, dependent on API level. This theme is replaced 133 | by AppBaseTheme from res/values-vXX/styles.xml on newer devices. 134 | 135 | 136 | Theme customizations available in newer API levels can go in 137 | res/values-vXX/styles.xml, while customizations related to 138 | backward-compatibility can go here. 139 | 140 | 141 | Base application theme for API 11+. This theme completely replaces 142 | AppBaseTheme from res/values/styles.xml on API 11+ devices. 143 | 144 | API 11 theme customizations can go here. 145 | 146 | Base application theme for API 14+. This theme completely replaces 147 | AppBaseTheme from BOTH res/values/styles.xml and 148 | res/values-v11/styles.xml on API 14+ devices. 149 | 150 | API 14 theme customizations can go here. 151 | */ 152 | public static final int AppBaseTheme=0x7f070000; 153 | /** Application theme. 154 | All customizations that are NOT specific to a particular API-level can go here. 155 | */ 156 | public static final int AppTheme=0x7f070001; 157 | } 158 | } 159 | -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/libs/android-support-v4.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /res/drawable-hdpi/bottom_bar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-hdpi/bottom_bar.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_know_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-hdpi/btn_know_nor.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_know_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-hdpi/btn_know_pre.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/message_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-hdpi/message_selected.png -------------------------------------------------------------------------------- /res/drawable-hdpi/message_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-hdpi/message_unselected.png -------------------------------------------------------------------------------- /res/drawable-hdpi/news_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-hdpi/news_selected.png -------------------------------------------------------------------------------- /res/drawable-hdpi/news_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-hdpi/news_unselected.png -------------------------------------------------------------------------------- /res/drawable-hdpi/setting_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-hdpi/setting_unselected.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-hdpi/tab_bg.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_settings_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-hdpi/tab_settings_normal.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_settings_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-hdpi/tab_settings_pressed.png -------------------------------------------------------------------------------- /res/drawable-mdpi/background_snippet_nodivider.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-mdpi/background_snippet_nodivider.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-mdpi/reminder.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodluckcwl/DayPlan/5811a0edf990d4534556c48e84afeb98a32f2fc8/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/background_activated.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /res/layout/activity_alarm.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/layout/activity_fragment.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 11 | 12 | 13 | 17 | 18 | 23 | 24 | 29 | 30 | 36 | 37 | 44 | 45 | 46 | 47 | 52 | 53 | 58 | 59 | 65 | 66 | 73 | 74 | 75 | 76 | 81 | 82 | 87 | 88 | 94 | 95 | 102 | 103 | 104 | 105 | 110 | 111 | 116 | 117 | 123 | 124 | 131 | 132 | 133 | 134 | 135 | -------------------------------------------------------------------------------- /res/layout/dialog_date.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/layout/dialog_type.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 15 | 16 | 23 | 30 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /res/layout/fragment_image.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | -------------------------------------------------------------------------------- /res/layout/fragment_list_plan.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | 18 | 19 | 20 | 26 | 27 | 28 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /res/layout/fragment_plan_camera.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 18 | 19 |