天天看點

解決android4.0以上程式請求需做的處理

在onCreate()方法裡需加入兩行代碼:

StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
		StrictMode.setThreadPolicy(policy);