-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 6.85 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html><html lang="zh-CN"><head><meta charset="utf-8"><meta name="X-UA-Compatible" content="IE=edge"><title> Android杂文 - yydcdut</title><meta name="description" content="Android技术杂文,yydcdut"><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="icon" href="/favicon.png"><link rel="stylesheet" href="/css/apollo.css"><link rel="search" type="application/opensearchdescription+xml" href="http://yydcdut.com/atom.xml" title="Android杂文 - yydcdut"></head><body><div class="wrap"><header><a href="/" class="logo-link"><img src="/favicon.png" alt="logo"></a><ul class="nav nav-list"><li class="nav-list-item"><a href="/" target="_self" class="nav-list-link active">BLOG</a></li><li class="nav-list-item"><a href="/archives/" target="_self" class="nav-list-link">ARCHIVE</a></li><li class="nav-list-item"><a href="https://github.com/yydcdut/yydcdut.github.io/issues" target="_blank" class="nav-list-link">COMMENT</a></li><li class="nav-list-item"><a href="https://github.com/yydcdut" target="_blank" class="nav-list-link">GITHUB</a></li><li class="nav-list-item"><a href="/atom.xml" target="_self" class="nav-list-link">RSS</a></li></ul></header><main class="container"><ul class="home post-list"><li class="post-list-item"><article class="post-block"><h2 class="post-title"><a href="/2019/08/03/glide-analyse/" class="post-title-link">Glide源码解析</a></h2><div class="post-info">2019年8月3日</div><div class="post-content"><blockquote>
<p>Github: <a href="https://github.com/bumptech/glide">Glide</a> 分析版本:<a href="https://github.com/bumptech/glide/tree/85bf0c32f797c04c7d2be87589e075040c3bfb7e">85bf0c3</a></p>
</blockquote>
<p>An image loading and caching library for Android focused on smooth scrolling</p></div><a href="/2019/08/03/glide-analyse/" class="read-more">...阅读全文</a></article></li><li class="post-list-item"><article class="post-block"><h2 class="post-title"><a href="/2019/07/14/java-dynamic-proxy/" class="post-title-link">Java动态代理原理</a></h2><div class="post-info">2019年7月14日</div><div class="post-content"><blockquote>
<p>分析版本: JDK1.8</p>
</blockquote>
<p>代理类在程序运行时创建的代理方式被成为动态代理</p></div><a href="/2019/07/14/java-dynamic-proxy/" class="read-more">...阅读全文</a></article></li><li class="post-list-item"><article class="post-block"><h2 class="post-title"><a href="/2019/07/13/retrofit-analyse/" class="post-title-link">retrofit源码简析</a></h2><div class="post-info">2019年7月13日</div><div class="post-content"><blockquote>
<p>Github: <a href="https://github.com/square/retrofit">retrofit</a> 分析版本:<a href="https://github.com/square/retrofit/commit/2851c14578a7722da56fabbee8d71e1c8e50c145">2851c14</a></p>
</blockquote>
<p>Type-safe HTTP client for Android and Java</p></div><a href="/2019/07/13/retrofit-analyse/" class="read-more">...阅读全文</a></article></li><li class="post-list-item"><article class="post-block"><h2 class="post-title"><a href="/2019/07/12/okhttp-call-server-interceptor-analyse/" class="post-title-link">OkHttp - CallServerInterceptor源码简析</a></h2><div class="post-info">2019年7月12日</div><div class="post-content"><blockquote>
<p>Github: <a href="https://github.com/square/okhttp">okhttp</a> 分析版本:<a href="https://github.com/square/okhttp/tree/930d4d07d836aef3c2681867d6ab9e73c23aacfb">930d4d0</a></p>
</blockquote>
<p>This is the last interceptor in the chain. It makes a network call to the server</p></div><a href="/2019/07/12/okhttp-call-server-interceptor-analyse/" class="read-more">...阅读全文</a></article></li><li class="post-list-item"><article class="post-block"><h2 class="post-title"><a href="/2019/07/11/okhttp-connect-interceptor-analyse/" class="post-title-link">OkHttp - ConnectInterceptor源码简析</a></h2><div class="post-info">2019年7月11日</div><div class="post-content"><blockquote>
<p>Github: <a href="https://github.com/square/okhttp">okhttp</a> 分析版本:<a href="https://github.com/square/okhttp/tree/930d4d07d836aef3c2681867d6ab9e73c23aacfb">930d4d0</a></p>
</blockquote>
<p>Opens a connection to the target server and proceeds to the next interceptor</p></div><a href="/2019/07/11/okhttp-connect-interceptor-analyse/" class="read-more">...阅读全文</a></article></li><li class="post-list-item"><article class="post-block"><h2 class="post-title"><a href="/2019/07/10/okhttp-cache-interceptor-analyse/" class="post-title-link">OkHttp - CacheInterceptor源码简析</a></h2><div class="post-info">2019年7月10日</div><div class="post-content"><blockquote>
<p>Github: <a href="https://github.com/square/okhttp">okhttp</a> 分析版本:<a href="https://github.com/square/okhttp/tree/930d4d07d836aef3c2681867d6ab9e73c23aacfb">930d4d0</a></p>
</blockquote>
<p>Serves requests from the cache and writes responses to the cache</p></div><a href="/2019/07/10/okhttp-cache-interceptor-analyse/" class="read-more">...阅读全文</a></article></li><li class="post-list-item"><article class="post-block"><h2 class="post-title"><a href="/2019/07/09/okhttp-bridge-interceptor-analyse/" class="post-title-link">OkHttp - BridgeInterceptor源码简析</a></h2><div class="post-info">2019年7月9日</div><div class="post-content"><blockquote>
<p>Github: <a href="https://github.com/square/okhttp">okhttp</a> 分析版本:<a href="https://github.com/square/okhttp/tree/930d4d07d836aef3c2681867d6ab9e73c23aacfb">930d4d0</a></p>
</blockquote>
<p>Bridges from application code to network code</p></div><a href="/2019/07/09/okhttp-bridge-interceptor-analyse/" class="read-more">...阅读全文</a></article></li><li class="post-list-item"><article class="post-block"><h2 class="post-title"><a href="/2019/07/08/okhttp-retry-and-follow-up-interceptor-analyse/" class="post-title-link">OkHttp - RetryAndFollowUpInterceptor源码简析</a></h2><div class="post-info">2019年7月8日</div><div class="post-content"><blockquote>
<p>Github: <a href="https://github.com/square/okhttp">okhttp</a> 分析版本:<a href="https://github.com/square/okhttp/tree/930d4d07d836aef3c2681867d6ab9e73c23aacfb">930d4d0</a></p>
</blockquote>
<p>This interceptor recovers from failures and follows redirects as necessary</p></div><a href="/2019/07/08/okhttp-retry-and-follow-up-interceptor-analyse/" class="read-more">...阅读全文</a></article></li></ul></main><footer><div class="paginator"><a href="/page/2/" class="next">下一页</a></div><div class="copyright"><p>© 2015 - 2019 <a href="http://yydcdut.com">yydcdut</a>, powered by <a href="https://hexo.io/" target="_blank">Hexo</a> and <a href="https://github.com/pinggod/hexo-theme-apollo" target="_blank">hexo-theme-apollo</a>.</p></div></footer></div><script async src="//cdn.bootcss.com/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML" integrity="sha384-crwIf/BuaWM9rM65iM+dWFldgQ1Un8jWZMuh3puxb8TOY9+linwLoI7ZHZT+aekW" crossorigin="anonymous"></script></body></html>