【转载】retrofit 2 源码解析】的更多相关文章

retrofit 官网地址:http://square.github.io/retrofit/ retrofit GitHub地址:https://github.com/square/retrofit 参考: http://www.tuicool.com/articles/eeQFVrM http://blog.csdn.net/feng88724/article/details/52238321 原文链接:http://bxbxbai.github.io/2015/12/13/retrofit…
转自:http://www.open-open.com/lib/view/open1472216742720.html https://blog.piasy.com/2016/07/11/Understand-OkHttp/ OkHttp官网地址:http://square.github.io/okhttp/OkHttp GitHub地址:https://github.com/square/okhttp 本文是 Piasy 原创,发表于 https://blog.piasy.com,请阅读原文支…
Bootstrap 源码解析 前言 Bootstrap 是个CSS库,简单,高效.很多都可以忘记了再去网站查.但是有一些核心的东西需要弄懂.个人认为弄懂了这些应该就算是会了.源码看一波. 栅格系统 所谓的栅格系统其实就是一种布局方式.融合bootstap的自适应样式就会显的很酷炫. 例子: <div class="container"> <div class="row"> <div class="col-xs-6"&…
Github源码地址:https://github.com/wyouflf/xUtils3 原文地址 :http://www.codekk.com/blogs/detail/54cfab086c4761e5001b2543 本文为 Android 开源项目源码解析 中 xUtils 部分.项目地址:xUtils,分析的版本:192c2a886c,Demo 地址:xUtils Demo分析者:Caij,校对者:maogy,校对状态:未完成 1. 功能介绍 xUtils 一个 Android 公共库…
原文地址:https://github.com/Rowandjj/my_awesome_blog/blob/master/fab_anlysis/README.md loatingActionButton源码解析 背景 FloatingActionButton(下文以fab代替)是android support design组件库中提供的一个视图控件,是material design设计中fab的官方实现. 此控件的官方介绍如下: Floating action buttons are used…
原文地址:https://github.com/Skykai521/AndroidSdkSourceAnalysis/blob/master/article/Scroller%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90.md Scroller源码解析 本文分析版本: Android API 22 1.简介 Android开发中,如果我们希望使一个View滑动的话,除了使用属性动画外.我们还可以使用系统提供给我们的两个类Scroller和OverScroller用来实现…
原文地址:https://github.com/LittleFriendsGroup/AndroidSdkSourceAnalysis/blob/master/article/LruCache%E6%BA%90%E7%A0%81%E8%A7%A3%E6%9E%90.md 1. 简介 LRU 是 Least Recently Used 最近最少使用算法. 曾经,在各大缓存图片的框架没流行的时候.有一种很常用的内存缓存技术:SoftReference 和 WeakReference(软引用和弱引用)…
声明:转载自前辈:开心的鱼a1 一 .概述 MyBatis没有提供日志的实现类,需要接入第三方的日志组件,但第三方日志组件都有各自的Log级别,且各不相同,但MyBatis统一提供了trace.debug.warn.error四个级别: 自动扫描日志实现,并且第三方日志插件加载优先级如下:slf4J → commonsLoging → Log4J2 → Log4J → JdkLog; 日志的使用要优雅的嵌入到主体功能中: 二.设计模式 将各种日志组件如(slf4J ,commonsLoging…
原文地址:http://blog.csdn.net/u012702547/article/details/52273918 Picasso是Squareup公司出的一款图片加载框架,能够解决我们在Android开发中加载图片时遇到的诸多问题,比如OOM,图片错位等,问题主要集中在加载图片列表时,因为单张图片加载谁都会写.如果我们想在ListView或者GridView或者RecyclerView中加载图片墙,那么这个时候对原图片的二次处理就显得非常重要了,否则就会出现我们上文说的OOM或者图片错…
原文地址:https://github.com/Aspsine/AndroidSdkSourceAnalysis/blob/master/article/TabLayout%E6%BA%90%E7%A0%81%E8%A7%A3%E6%9E%90.md 1. 功能介绍 1.1 TabLayout Tabs跟随Actionbar在Android 3.0进入大家的视线,是一个很经典的设计.它也是Material Design 规范中提及的Component之一.Tabs or Bottom navig…