
总结笔记
西楚老王
从事安卓开发行业
展开
-
我的总结笔记
我的总结笔记 一、广播:发送: Intent intent = new Intent(); intent.setAction(“”); sendBroadcast();接收: 1.注册: IntentFilter intentF = new IntentFilter(“。。。。”); registerReceiver(rec,intentF);class MyReceiv...原创 2018-07-26 11:52:14 · 162 阅读 · 0 评论 -
java笔记
java笔记--关于线程同步(7种同步方式):https://blog.youkuaiyun.com/yuqi007163/article/details/53519698原创 2018-08-13 16:05:05 · 159 阅读 · 0 评论 -
Nginx笔记
Nginx详解:https://www.cnblogs.com/yxlblogs/p/3898990.html如何将 Nginx 配置为Web服务器的方法:https://www.jb51.net/article/107975.htmnginx超详细讲解之概述:https://blog.youkuaiyun.com/u014459326/article/details/53364849Nginx反...原创 2018-08-15 16:37:42 · 229 阅读 · 0 评论 -
WEB相关学习
RESTful接口标准:http://www.runoob.com/w3cnote/restful-architecture.html原创 2018-08-15 12:17:12 · 206 阅读 · 0 评论 -
android好用的框架汇总
使用Android JobScheduler优雅的处理后台数据:https://blog.youkuaiyun.com/aroundme/article/details/55214203Android 权限管理(compile 'pub.devrel:easypermissions:1.1.0'):https://segmentfault.com/a/1190000012247350机器学习框架(Te...原创 2018-08-07 10:20:12 · 502 阅读 · 0 评论 -
Android 项目打包为jar包,需注意问题
一、在模板build文件中加入:dependencies{}task makeJar(type:Copy){ //delete 'build/libs/mylib.jar' from ('build/intermediates/bundles/release/') into ('build/libs/') include ('classes.jar')...原创 2018-07-27 09:50:11 · 484 阅读 · 0 评论 -
在Android Studio中使用Git
参考文档:https://blog.youkuaiyun.com/xueanother/article/details/78873238首次提交代码出现的报错处理:error: src refspec master does not match any. 错误处理办法https://www.cnblogs.com/jeremylee/p/5715289.htmlGit的使用--如何将本地项目上...原创 2018-07-26 17:19:09 · 123 阅读 · 0 评论 -
Android 进程、跨进程通信、IntentService、AIDL总结
项目源码:https://github.com/lwhenyoucai/aidlAndProcessAndIntentService原创 2018-07-26 16:48:20 · 634 阅读 · 0 评论 -
android开发中常用方法总结
1.判断是否在后台运行:import android.app.ActivityManager;import android.content.Context;import java.util.List;public class AppUtils { public static boolean isAppRunning(Context context, String packageN...原创 2018-07-26 16:43:29 · 760 阅读 · 0 评论 -
异步处理总结
AsyncTask入门:http://blog.youkuaiyun.com/lincyang/article/details/6617802IntentService:今天要说的IntentService提供的功能也很类似,都是来处理异步工作的。工作流程也非常简单,客户端通过startService(Intent) 方法来调用,服务启动后,开启worker线程来顺序处理intent的任务。注意这里...原创 2018-07-26 15:33:19 · 630 阅读 · 0 评论 -
EMQTT笔记
相关命令:https://www.cnblogs.com/quitboy/p/4795738.html参考文档:http://emqtt.com/docs/v2/commands.html心得:https://blog.youkuaiyun.com/qq_29261497/article/details/52954749?locationNum=8&fps=1收藏的关于mqtt的示例:ht...原创 2018-07-26 15:02:57 · 792 阅读 · 0 评论 -
全面屏适配
//5.0 全透明实现if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { Window window = getWindow(); window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS); window.getD...原创 2018-10-06 14:30:31 · 265 阅读 · 0 评论