Android日记APP数据保存在bmob云服务器上,主要实现

-提醒:设置提醒时间,每天提醒写日记

-隐私密码:密码保护,不用当心内容被别人看到(其实也并没什么卵用)
-备份:将数据备份到云端
-导出:将数据导出到sdcard(.txt/.db)
-夜间模式

-发现:把单条日记发布到广场


程序加载的组件比较多,如下:

androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.jakewharton:butterknife:8.6.0'
compile 'com.android.support:support-v4:25.3.1'
compile 'com.jpeng:JPTabBar:1.2.3'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support:cardview-v7:25.3.1'
compile 'cn.bmob.android:bmob-sdk:3.5.5'
compile 'cn.bmob.android:http-legacy:1.0'
compile 'com.jcodecraeer:xrecyclerview:1.3.2'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.github.lovetuzitong:MultiImageSelector:1.2'
testCompile 'junit:junit:4.12'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.6.0'

此程序不作为商业目的,仅仅用于学习目的,作者开源出来。


程序 API版本在25 android7.1.1   build  tools  version  25.0.3    gradle version3.3     android plugin version2.3.3

运行如下图所示:


基于Bmob云平台的android写日记带提醒功能基于Bmob云平台的android写日记带提醒功能

相关文章:

  • 2021-04-01
  • 2022-12-23
  • 2022-12-23
  • 2021-08-12
  • 2022-12-23
  • 2021-07-27
猜你喜欢
  • 2021-09-30
  • 2022-12-23
  • 2021-09-25
  • 2021-06-23
  • 2022-12-23
  • 2022-02-23
  • 2021-11-09
相关资源
相似解决方案