Skip to content

Commit 246ae6e

Browse files
committed
我赌两包辣条你没见过,实战无接口写安卓巴士博客App端
1 parent c770d49 commit 246ae6e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

android/我赌两包辣条你没见过,实战无接口写安卓巴士博客App端.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@
164164
我们根据之前在Chrome上的分析得到了如下需要使用的对象。
165165

166166
**Banner模型**
167+
167168
![](http://upload-images.jianshu.io/upload_images/1110736-6e70c505cb733bdb.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
168169

169170
**文章列表模型**
@@ -194,7 +195,7 @@
194195

195196

196197
这是Banner里的某一个Item。我们可以对照着解析。
197-
```HTML
198+
```html
198199
<div class="visible" style="position: absolute; left: 823.15px;">
199200
<a target="_blank" href="http://www.apkbus.com/thread-282214-1-1.html">
200201
<img src="data/attachment/forum/201707/31/161204zqgdz0cm22n2mmym.jpg">
@@ -225,7 +226,8 @@
225226

226227

227228
**博客列表**的信息稍微多一点,不过一样如法制炮。
228-
```HTML
229+
230+
```html
229231
<div class="row">
230232
<a href="blog-889706-68413.html" target="_blank"><h2>Handler消息源码流程分析(含手写笔记)</h2></a>
231233
<div class="preview">相关文章链接:Handler消息源码流程分析(含手写笔记)HandlerThread线程间通信源码解析IntentService源码解析Handler在android开发中可谓随处可见,不论你是一个刚开始学习android的新人,还是昔日的王者,都离不开它。关于 handler的源码已经很前人分享过了。如果我没能给大家讲明白可以参考网上其他人写的。注:文 ...</div>
@@ -353,6 +355,7 @@ $jquery("h6").css({fontSize:"0.85em"});
353355

354356
我们在`android``WebVIew`渲染结束后调用即可。
355357
我们使用了`WebViewClient`来处理,在`onPageFinished`回调后说明网页已被加载成功。在此处注入`js`即可。
358+
356359
```java
357360
llWeb.setWebViewClient(mWebViewClient);
358361
private WebViewClient mWebViewClient = new WebViewClient() {

0 commit comments

Comments
 (0)