Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 高級開發 >> Android顯示網絡圖片相關實現方法淺談

Android顯示網絡圖片相關實現方法淺談

編輯:高級開發

android手機操作系統已經出現就受到了用戶的好評。各大手機廠商也開始利用這一開源的系統抓住商機,發展自己的產業。在這裡先來了解一下這一操作系統的一個小技巧,有關android顯示網絡圖片的實現

  • android內核相關內容總結
  • android HelloWord編寫方式介紹
  • android重力感應實現方式簡介
  • android Theme詳細內容概述
  • android應用技巧總結

在android中顯示一張網絡圖片其實是超級簡單的,下面就一個非常簡單的例子:

android顯示網絡圖片Step1:

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

2、VIEwWebImageActivity中的代碼如下:

  1. String imageUrl = "/School/UploadFiles_7810/201203/20120329202510697.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. >
  7. < ImageVIEw
  8. android:id="@+id/imvIEw"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_gravity="center"
  12. />
  13. < /LinearLayout>

android顯示網絡圖片Step3:

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

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved