亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中如何顯示網絡圖片

發布時間:2022-04-16 16:16:35 來源:億速云 閱讀:591 作者:iii 欄目:開發技術

這篇文章主要介紹“Android中如何顯示網絡圖片”,在日常操作中,相信很多人在Android中如何顯示網絡圖片問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Android中如何顯示網絡圖片”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

Android顯示網絡圖片Step1:

1、創建你的Activity,本例中以ViewWebImageActivity說明;

2、ViewWebImageActivity中的代碼如下:

  1. String imageUrl = "https://cache.yisu.com/upload/ask_collection/20210725/111/121401.jpg"; 

  2. //這就是你需要顯示的網絡圖片---網上隨便找的  

  3. Bitmap bmImg;   

  4. ImageView imView;  

  5. Button button1;   

  6. @Override   

  7. public void onCreate(Bundle savedInstanceState) {   

  8. super.onCreate(savedInstanceState);   

  9. setContentView(R.layout.main);   

  10. imView = (ImageView) findViewById(R.id.imview);   

  11. imView.setImageBitmap(returnBitMap(imageUrl));   

  12. }   

  13. public Bitmap returnBitMap(String url) {   

  14. URL myFileUrl = null;   

  15. Bitmap bitmap = null;   

  16. try {   

  17. myFileUrl = new URL(url);   

  18. } catch (MalformedURLException e) {   

  19. e.printStackTrace();   

  20. }   

  21. try {   

  22. HttpURLConnection conn = (HttpURLConnection) 
    myFileUrl.openConnection();   

  23. conn.setDoInput(true);   

  24. conn.connect();   

  25. InputStream is = conn.getInputStream();   

  26. bitmap = BitmapFactory.decodeStream(is);   

  27. is.close();   

  28. } catch (IOException e) {   

  29. e.printStackTrace();   

  30. }   

  31. return bitmap;   

  32. }

3、其中,returnBitMap(String url) 方法就是具體實現網絡圖片轉換成bitmap。

Android顯示網絡圖片Step2:

1、修改你的main.xml文件如下:

  1. < ?xml version="1.0" encoding="utf-8"?> 

  2. < LinearLayout xmlns:android=
    "http://schemas.android.com/apk/res/android" 

  3. android:orientation="vertical" 

  4. android:layout_width="fill_parent" 

  5. android:layout_height="fill_parent" 

  6. < ImageView   

  7. android:id="@+id/imview" 

  8. android:layout_width="wrap_content"   

  9. android:layout_height="wrap_content"   

  10. android:layout_gravity="center"   

  11. />   

  12. < /LinearLayout> 

Android顯示網絡圖片Step3:

在你的AndroidManifest.xml文件的< /manifest>節點上面添加< uses-permission android:name="android.permission.INTERNET" />,這是由于Android有很多的權限限制,否則圖片是不能在你的模擬器上顯示的。

到此,關于“Android中如何顯示網絡圖片”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

珲春市| 邻水| 吴川市| 开封县| 凌云县| 灌阳县| 富平县| 墨脱县| 蒲江县| 漳浦县| 萍乡市| 肃北| 温泉县| 日喀则市| 呈贡县| 民县| 青冈县| 阿瓦提县| 五峰| 衡山县| 隆德县| 三江| 武乡县| 兴海县| 武冈市| 五大连池市| 明光市| 宜兰县| 瑞丽市| 噶尔县| 桐乡市| 衡南县| 吉首市| 建昌县| 东莞市| 雷州市| 宿松县| 文化| 温泉县| 定陶县| 化德县|