1
我正在嘗試從互聯網圖像,發現類似的樣品然後稍微改變了代碼,我已經找到。但是,當我運行我的代碼,我得到了。這時我已經尋找解決方案,並注意到這個異常android.os.NetworkOnMainThreadException
我應該使用Asyntask
類來做到這一點。問題很簡單我只是不能在每行代碼中都得到語法錯誤。請你幫忙解決這個代碼並使其正常運行。提前感謝混淆Asyntask在檢索圖像
class BackroundActivity extends AsyncTask<Void, Bitmap, Void>
{
@Override
protected Bitmap doInBackground(String src) throws IOException {
HttpURLConnection con = null;
URL url=new URL(src);
con=(HttpURLConnection) url.openConnection();
con.setDoInput(true);
InputStream input=con.getInputStream();
Bitmap bmp=BitmapFactory.decodeStream(input);
return bmp;
}