【实例简介】

自己实现的简易便签,贡献出来供大家分享,希望提出宝贵意见,包括添加事务、删除事务、闹钟提醒,消息推送等

【实例截图】

【核心代码】

note

└── note

├── AndroidManifest.xml

├── bin

│   ├── AndroidManifest.xml

│   ├── classes

│   │   └── com

│   │   └── way

│   │   └── note

│   │   ├── AlarmActivity$1.class

│   │   ├── AlarmActivity$2.class

│   │   ├── AlarmActivity.class

│   │   ├── AlarmAlertActivity$1.class

│   │   ├── AlarmAlertActivity$2.class

│   │   ├── AlarmAlertActivity$3.class

│   │   ├── AlarmAlertActivity$4.class

│   │   ├── AlarmAlertActivity$5.class

│   │   ├── AlarmAlertActivity.class

│   │   ├── AlarmService$1.class

│   │   ├── AlarmService.class

│   │   ├── AlarmSettingAdapter$ViewHolder.class

│   │   ├── AlarmSettingAdapter.class

│   │   ├── backup

│   │   │   └── DBOperations.class

│   │   ├── BaseActivity$1.class

│   │   ├── BaseActivity.class

│   │   ├── BootReceiver.class

│   │   ├── BuildConfig.class

│   │   ├── CallAlarm.class

│   │   ├── data

│   │   │   ├── DBOpenHelper.class

│   │   │   ├── NoteDataManager.class

│   │   │   ├── NoteDataManagerImpl.class

│   │   │   ├── NoteItem.class

│   │   │   ├── NoteList$NoteComparetor.class

│   │   │   ├── NoteList.class

│   │   │   └── RingtoneItem.class

│   │   ├── ListItemView.class

│   │   ├── MusicPicker$MusicListAdapter$ViewHolder.class

│   │   ├── MusicPicker$MusicListAdapter.class

│   │   ├── MusicPicker.class

│   │   ├── NoteActivity$10.class

│   │   ├── NoteActivity$11.class

│   │   ├── NoteActivity$12.class

│   │   ├── NoteActivity$1.class

│   │   ├── NoteActivity$2.class

│   │   ├── NoteActivity$3.class

│   │   ├── NoteActivity$4.class

│   │   ├── NoteActivity$5.class

│   │   ├── NoteActivity$6.class

│   │   ├── NoteActivity$7.class

│   │   ├── NoteActivity$8.class

│   │   ├── NoteActivity$9.class

│   │   ├── NoteActivity$ExportTask.class

│   │   ├── NoteActivity.class

│   │   ├── NoteAdapter.class

│   │   ├── NoteApplication.class

│   │   ├── NoteEditor$1.class

│   │   ├── NoteEditor$2.class

│   │   ├── NoteEditor$3.class

│   │   ├── NoteEditor$4.class

│   │   ├── NoteEditor$LinedEditText$1.class

│   │   ├── NoteEditor$LinedEditText.class

│   │   ├── NoteEditor.class

│   │   ├── R$array.class

│   │   ├── R$attr.class

│   │   ├── R$color.class

│   │   ├── R$drawable.class

│   │   ├── R$id.class

│   │   ├── R$layout.class

│   │   ├── R$string.class

│   │   ├── R$style.class

│   │   ├── R$xml.class

│   │   ├── R.class

│   │   ├── search

│   │   │   ├── CustomSorter$Data.class

│   │   │   ├── CustomSorter.class

│   │   │   └── NoteProvider.class

│   │   ├── SearchResultActivity.class

│   │   └── utils

│   │   ├── ClockUtils.class

│   │   ├── FileUtis.class

│   │   ├── IntentUtils.class

│   │   └── StringUtils.class

│   ├── classes.dex

│   ├── dexedLibs

│   │   ├── android-support-v4-1e7dcca7551d5ad61479b6aebf976c32.jar

│   │   └── annotations-bf65d065d2bf11dc7706959d18f5bc41.jar

│   ├── jarlist.cache

│   ├── note.apk

│   ├── res

│   │   ├── drawable

│   │   │   └── note_icon.png

│   │   ├── drawable-hdpi

│   │   │   ├── menu_refresh.png

│   │   │   └── stat_notify_alarm.png

│   │   └── drawable-mdpi

│   │   ├── add_shortcut_to_home.png

│   │   ├── alarm_clock.png

│   │   ├── clock.png

│   │   ├── date_time.png

│   │   ├── delete.png

│   │   ├── edit_folder_title.png

│   │   ├── et_content_bg.png

│   │   ├── folder_background_1.png

│   │   ├── folder_background.png

│   │   ├── ic_menu_edit.png

│   │   ├── ic_menu_goto.png

│   │   ├── imagebutton_background_0.png

│   │   ├── imagebutton_background.png

│   │   ├── imagebutton_pressed.png

│   │   ├── item_light_blue_0.png

│   │   ├── item_light_blue_1.png

│   │   ├── item_light_blue.png

│   │   ├── main_background_000.png

│   │   ├── main_background.png

│   │   ├── menu_move.png

│   │   ├── new_folder.png

│   │   ├── new_note.png

│   │   ├── note_icon.png

│   │   ├── save.png

│   │   └── title_background.png

│   └── resources.ap_

├── gen

│   └── com

│   └── way

│   └── note

│   ├── BuildConfig.java

│   └── R.java

├── libs

│   └── android-support-v4.jar

├── proguard-project.txt

├── project.properties

├── res

│   ├── drawable

│   │   ├── new_note_background.xml

│   │   └── note_icon.png

│   ├── drawable-hdpi

│   │   ├── menu_refresh.png

│   │   └── stat_notify_alarm.png

│   ├── drawable-mdpi

│   │   ├── add_shortcut_to_home.png

│   │   ├── alarm_clock.png

│   │   ├── clock.png

│   │   ├── date_time.png

│   │   ├── delete.png

│   │   ├── edit_folder_title.png

│   │   ├── et_content_bg.png

│   │   ├── folder_background_1.png

│   │   ├── folder_background.png

│   │   ├── ic_menu_edit.png

│   │   ├── ic_menu_goto.png

│   │   ├── imagebutton_background_0.png

│   │   ├── imagebutton_background.png

│   │   ├── imagebutton_pressed.png

│   │   ├── item_light_blue_0.png

│   │   ├── item_light_blue_1.png

│   │   ├── item_light_blue.png

│   │   ├── main_background_000.png

│   │   ├── main_background.png

│   │   ├── menu_move.png

│   │   ├── new_folder.png

│   │   ├── new_note.png

│   │   ├── note_icon.png

│   │   ├── save.png

│   │   └── title_background.png

│   ├── layout

│   │   ├── alarm_layout.xml

│   │   ├── alarm_setting_item_layout.xml

│   │   ├── delete_softkey.xml

│   │   ├── dialog_alarm_alert_title.xml

│   │   ├── dialog_alarm_alert.xml

│   │   ├── dialog_layout_new_folder.xml

│   │   ├── index_page.xml

│   │   ├── listview_item_layout.xml

│   │   ├── music_list_item.xml

│   │   ├── music_picker.xml

│   │   ├── new_alarm_layout.xml

│   │   └── note_editor.xml

│   ├── values

│   │   ├── arrays.xml

│   │   ├── colors.xml

│   │   └── strings.xml

│   ├── values-zh-rCN

│   │   ├── arrays.xml

│   │   └── strings.xml

│   └── xml

│   └── searchable.xml

└── src

└── com

└── way

└── note

├── AlarmActivity.java

├── AlarmAlertActivity.java

├── AlarmService.java

├── AlarmSettingAdapter.java

├── backup

│   └── DBOperations.java

├── BaseActivity.java

├── BootReceiver.java

├── CallAlarm.java

├── data

│   ├── DBOpenHelper.java

│   ├── NoteDataManagerImpl.java

│   ├── NoteDataManager.java

│   ├── NoteItem.java

│   ├── NoteList.java

│   └── RingtoneItem.java

├── ListItemView.java

├── MusicPicker.java

├── NoteActivity.java

├── NoteAdapter.java

├── NoteApplication.java

├── NoteEditor.java

├── search

│   ├── CustomSorter.java

│   └── NoteProvider.java

├── SearchResultActivity.java

└── utils

├── ClockUtils.java

├── FileUtis.java

├── IntentUtils.java

└── StringUtils.java

36 directories, 186 files

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐