标签:
1.shift+F2调用httpwatch(为网页抓包数据分析工具【需下载】):
2.HttpURLConnection:用于发送和接收数据
3.必须有联网权限:android.permission.INTERNET
4.异常处理方式:
//若出现此种异常, W/System.err(5504): android.os.NetworkOnMainThreadException W/System.err(5504): at android.os.StrictMode$AndroidBlockGuardPolicy.onNetwork(StrictMode.java:1148) //在oncreate方法中加入 StrictMode.ThreadPolicy policy=new StrictMode.ThreadPolicy.Builder().permitAll().build(); StrictMode.setThreadPolicy(policy);
5.ScrollView(滚动条):使用注意:只能有一个孩子
1.如果在主线程中进行了耗时的操作(比如连接网络,拷贝数大的数据)
标签:
原文地址:http://www.cnblogs.com/wjh123/p/5932646.html