19年开发搜集的资料与遇到的问题简单整理 4-6月

Android  笔记  4-6月

 参考网站 
https://p.codekk.com/   (开源代码、项目)
https://blog.csdn.net/qq_42618969/article/details/81941242#    开源框架

框架帖子网址:https://blog.csdn.net/qq_35427437/article/details/80169160
安卓十大开发框架
1、AndBase框架
   项目地址: https://code.jd.com/zhaoqp2010_m/andbase

框架图片展示 网址 https://segmentfault.com/a/1190000005073746
其他框架可自行百度  https://www.jianshu.com/p/5b29048cbd62  

MVP框架参考博文
http://www.jcodecraeer.com/a/anzhuokaifa/2017/1020/8625.html 

蓝牙相关Demo
https://blog.csdn.net/fukaimei/article/details/78837578

谷歌官方蓝牙连接Demo
https://github.com/googlesamples/android-BluetoothLeGatt
网址
https://www.jianshu.com/p/f20327b40268
https://www.jianshu.com/p/00e3c9d73f0a
jar包 封装好的类

1.免费验证码登录
Mob官网地址:http://www.mob.com/。


ActionMode 总结参考
https://www.jianshu.com/p/94050aac2eee


 Display display = getWindowManager().getDefaultDisplay();
  
      Point outSize = new Point();
  
      display.getSize(outSize);//不能省略,必须有
 
       int screenWidth = outSize.x;//得到屏幕的宽度
    
    int screenHeight = outSize.y;//得到屏幕的高度

 
或者:

DisplayMetrics metrics = new DisplayMetrics();

getWindowManager().getDefaultDisplay().getMetrics(metrics);

int height = metrics.heightPixels;
int width  = metrics.widthPixels; 


并发队列 (数据)列表操作
https://www.jianshu.com/p/9e73b9216322


otto事件总线 总结参考
https://blog.csdn.net/happy_develop_/article/details/54584777


蓝牙扫描,连接,通讯 参考代码
https://www.cnblogs.com/zoff/p/5657349.html

蓝牙使用相关代码
https://blog.csdn.net/huangliniqng/article/details/82185983

https://blog.csdn.net/dengshunhao/article/details/80880926

https://blog.csdn.net/lzg13663472636/article/details/79886451#3利用clsutils和事先获得的pin进行配对


 蓝牙 
源码下载地址:http://www.apkbus.com/thread-306762-1-1.html
 
DEMO   蓝牙
  https://blog.csdn.net/qq_25827845/article/details/52400782

蓝牙自动配对解释
https://zhidao.baidu.com/question/1113435923301878499.html


提高编译速度
https://blog.csdn.net/yoonerloop/article/details/78872334

可视化频率(频谱) 频率渲染

LitePal 数据库


指南针代码demo下载
代码下载:https://download.csdn.net/download/weixin_37730482/10462764


测量view的宽度和高度的代码       
https://github.com/wuzhendev/samples/tree/master/MeasureViewDemo


个人博客链接
https://www.jianshu.com/p/c44d7a106302


android权限相关

你可能感兴趣的:(19年开发搜集的资料与遇到的问题简单整理 4-6月)