Note/大学笔记/安卓/第11章:网络编程.md

25 lines
494 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 第11章网络编程
## 11.2 WebView控件的使用
1.WebView浏览网页的内容 --> `loadUrl(String Url)`
2.WebView可以解析 HTML 代码 --> `loadDataWithBaseURL()`
3.WebView还可以支持 JS 代码
案例:天气预报
1.创建项目
2.复制图片和布局文件
3.创建assets文件夹复制weather.json
4.创建与JS0N数据匹配的实体类注意实体类的成员变量名要和json数据中的key值保持一致
5.添加Gson库
6.创建工具类JsonParse