android开发实例便签,Android便签应用

【实例简介】

一个简单实用的基于Android的便签小应用,界面美观,功能实用,几乎可以媲美商业小应用了,欢迎朋友下载体验或使用,有什么建议和批评,欢迎留言,谢谢合作!

【实例截图】

【核心代码】

便签

└── 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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值