-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
307 lines (302 loc) · 10.1 KB
/
mkdocs.yml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
site_name: wzasd's world
site_url: 'https://blog.founicy.top'
# repo_url: https://github.com/wzasd
# repo_name: Jeffrey.wang
copyright: 'Copyright © 2015 - 2021 wzasd'
theme:
icon:
repo: fontawesome/brands/git-alt
slate:
scheme: default
name: material
custom_dir: overrides
logo: assets/images/favicon.webp
palette:
- scheme: default
primary: white
accent: blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: black
accent: deep orange
toggle:
icon: material/toggle-switch
name: Switch to light mode
font:
code: Roboto Mono
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.indexes
- navigation.top
- toc.integrate
- search.suggest
- search.highlight
plugins:
- search:
prebuild_index: true
- git-revision-date-localized
- minify:
minify_html: true
extra:
social:
- icon: material/github
link: https://github.com/wzasd
- icon: material/email
link: [email protected]
disqus: 'Jeffrey wang'
manifest: manifest.webmanifest
analytics:
provider: google
property: G-Q6FXPH6HVX
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- toc:
permalink: true
permalink_title: Anchor link to this section for reference
title: Table of contents
- tables
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.critic:
mode: view
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
options:
custom_icons:
- overrides/.icons
- pymdownx.highlight:
anchor_linenums: true
linenums: true
linenums_style: pymdownx-inline
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.keys
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
clickable_checkbox: true
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML
- assets/js/busuanzi.pure.mini.js
# Page tree
nav:
- Android:
- 三方库系列:
- android/3rd-library/3rd-library-source-code.md
- android/3rd-library/matrix.md
- android/3rd-library/matrix-trace.md
- android/3rd-library/matrix-io.md
- android/3rd-library/matrix-resource.md
- android/3rd-library/matrix-sqlitelint.md
- android/3rd-library/okhttp.md
- android/3rd-library/retrofit.md
- android/3rd-library/rxjava&rxandroid.md
- android/other/RxJava.md
- android/3rd-library/glide1.md
- android/3rd-library/glide2.md
- android/3rd-library/glide3.md
- android/3rd-library/glide4.md
- android/3rd-library/glide5.md
- android/3rd-library/glide6.md
- android/3rd-library/glide7.md
- android/3rd-library/migrate-to-glide.md
- android/3rd-library/eventbus.md
- android/3rd-library/leakcanary.md
- android/3rd-library/permissiondispatcher.md
- android/other/constraintlayout.md
- android/other/dagger2.md
- android/3rd-library/hotfix.md
- framework系列:
- android/framework/Android四大组件(1).md
- android/framework/Android四大组件(2).md
- android/framework/Android四大组件(3).md
- android/framework/Android四大组件(4).md
- android/framework/IPC机制.md
- android/framework/View的事件体系.md
- android/framework/View的绘制原理.md
- android/framework/RemoteViews.md
- android/framework/Drawable.md
- android/framework/Android动画.md
- android/framework/Window与WindowManager.md
- android/framework/四大组件启动过程.md
- android/framework/Android消息机制.md
- android/framework/Android线程与线程池.md
- android/framework/Bitmap的缓存与加载.md
- android/framework/JNI与NDK.md
- android/framework/性能优化.md
- android/framework/binder1-mediaservice.md
- android/framework/binder2.md
- 杂记:
- android/other/android-ipc-big-data.md
- android/other/LocalSocket,Socket Websocket Http,P2P等网络编程(步骤)(Demo).md
- android/other/commands.md
- android/other/android-tv.md
- android/other/annotation.md
- android/other/best_throttle_in_mvvm.md
- android/other/android-jenkins.md
- android/other/SystemProrities.md
- android/other/recyclerview-cache.md
- android/other/recyclerview-item-docoration.md
- android/other/recyclerview-others.md
- android/other/RecyclerView-Sort&Delete.md
- android/other/FAB-Behavior.md
- android/other/nestedscrolling.md
- android/other/porterduff.md
- android/other/runtime.md
- android/other/android_alias.md
- android/other/Android-Development-Tool.md
- android/other/FileProvider.md
- android/other/Android判断导航栏高度.md
- android/other/Android图片选择器.md
- android/other/Android底部导航栏框架.md
- android/other/Android搜索栏的实现.md
- android/other/Android暂停音乐播放器的播放.md
- android/other/Android滑动返回实践.md
- android/other/Android程序反编译.md
- android/other/Android通讯录快速读取.md
- android/other/soft-keyboard-in-app.md
- android/other/腾讯X5内核入坑指南.md
- android/other/琐碎知识点.md
- android/other/琐碎知识点2.md
- android/paid/zsxq/week1-synchronized.md
- android/paid/zsxq/week2-service.md
- android/paid/zsxq/week3-activity.md
- android/paid/zsxq/week4-startActivityForResult.md
- android/paid/zsxq/week5-view.md
- android/paid/zsxq/week6-gradle.md
- android/paid/zsxq/week7-serialization.md
- android/paid/zsxq/week10-classloader.md
- android/paid/zsxq/week11-binder.md
- android/paid/zsxq/week12-retrofit-okhttp.md
- android/paid/zsxq/week14-jvm-gc.md
- android/paid/zsxq/week16-keep-app-alive.md
- android/paid/zsxq/week17-android-components.md
- android/paid/zsxq/week20-network-protocol.md
- android/paid/zsxq/week21-mvc&mvp&mvvm.md
- android/paid/zsxq/week22-android-studio-build.md
- android/paid/zsxq/week23-load-large-bitmap.md
- Android开发高手课:
- android/paid/master/index.md
- android/paid/master/crash_1.md
- android/paid/master/crash_2.md
- android/paid/master/memory_1.md
- android/paid/master/memory_2.md
- android/paid/master/stuck_1.md
- android/paid/master/stuck_2.md
- android/paid/master/stuck_3.md
- android/paid/master/start_1.md
- android/paid/master/start_2.md
- android/paid/master/io_1.md
- android/paid/master/io_2.md
- android/paid/master/io_3.md
- android/paid/master/storage_1.md
- android/paid/master/storage_2.md
- android/paid/master/storage_3.md
- android/paid/master/network_1.md
- android/paid/master/network_2.md
- android/paid/master/network_3.md
- android/paid/master/battery_1.md
- android/paid/master/battery_2.md
- android/paid/master/ui_1.md
- android/paid/master/ui_2.md
- android/paid/master/package_1.md
- android/paid/master/package_2.md
- android/paid/master/compile.md
- android/paid/master/bytecode.md
- android/paid/master/native_hook.md
- Flutter:
- flutter/flutter_first_project_1.md
- flutter/flutter_first_project_2.md
- flutter/flutter_first_project_3.md
- flutter/flutter_first_project_4.md
- LeetCode:
- leetcode/index.md
- leetcode/code_interviews_1.md
- leetcode/code_interviews_3.md
- leetcode/code_interviews_4.md
- leetcode/code_interviews_5.md
- leetcode/code_interviews_6.md
- leetcode/array.md
- leetcode/leetcode1-10.md
- leetcode/leetcode11-20.md
- leetcode/leetcode21-30.md
- leetcode/leetcode31-40.md
- leetcode/leetcode41-50.md
- leetcode/leetcode51-60.md
- leetcode/leetcode61-70.md
- leetcode/leetcode71-80.md
- leetcode/leetcode81-90.md
- leetcode/leetcode91-100.md
- leetcode/leetcode101-110.md
- leetcode/leetcode111-120.md
- Books:
- Design Pattern:
- design-pattern/design-pattern.md
- design-pattern/design-principle.md
- design-pattern/singleton.md
- design-pattern/builder.md
- design-pattern/prototype.md
- design-pattern/factory-method.md
- design-pattern/abstract-factory.md
- design-pattern/proxy.md
- design-pattern/composite.md
- design-pattern/adapter.md
- design-pattern/decorator.md
- design-pattern/flyweight.md
- design-pattern/facade.md
- design-pattern/bridge.md
- design-pattern/strategy.md
- design-pattern/state.md
- design-pattern/chain-of-responsibility.md
- design-pattern/interpreter.md
- design-pattern/command.md
- design-pattern/observer.md
- design-pattern/memento.md
- design-pattern/iterator.md
- design-pattern/template-method.md
- design-pattern/visitor.md
- design-pattern/mediator.md
- design-pattern/confusing-design-pattern.md
- Effective Java:
- effective-java/effective-java.md
- effective-java/chapter1.md
- effective-java/chapter2.md
- effective-java/chapter3.md
- JVM:
- jvm/jvm-content.md
- jvm/java-memory-area-oom.md
- jvm/java-gc.md
- jvm/class-struct.md
- jvm/load-class.md
- Java:
- java/generics-java-kotlin.md
- java/java-collections.md
- java/java-foundation.md
- Refactoring:
- refactoring/refactoring.md