安卓開發:SmartImageView簡單實現和應用

来源:https://www.cnblogs.com/xuyiqing/archive/2018/04/18/8877709.html
-Advertisement-
Play Games

通常從伺服器端獲取的圖片是URL地址,如果簡單地通過URL地址獲取圖片? 有一個開源項目:SmartImageView,做到了這個功能,同時還有其他功能,下載不便,過於龐大 這裡自己實現它的這個簡單功能 代碼: 兩個重載方法: 1:明確URL地址正確、不會失誤,直接調用 2:防止圖片URL出錯,設置 ...


通常從伺服器端獲取的圖片是URL地址,如果簡單地通過URL地址獲取圖片?

有一個開源項目:SmartImageView,做到了這個功能,同時還有其他功能,下載不便,過於龐大

這裡自己實現它的這個簡單功能

 

代碼:

package org.dreamtech.smartimageview;

import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;

import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Handler;
import android.os.Message;
import android.util.AttributeSet;
import android.widget.ImageView;

public class MySmartImageView extends ImageView {

    protected static final int REQUESTSUCCESS = 1;
    protected static final int REQUESTFAIL = 2;
    protected static final int ERROR = 3;

    @SuppressLint("HandlerLeak")
    private Handler handler = new Handler() {

        public void handleMessage(android.os.Message msg) {

            switch (msg.what) {
            case REQUESTSUCCESS:
                Bitmap bitmap = (Bitmap) msg.obj;

                MySmartImageView.this.setImageBitmap(bitmap);

                break;

            case REQUESTFAIL:

                int default_resource = (Integer) msg.obj;
                MySmartImageView.this.setBackgroundResource(default_resource);

                break;

            case ERROR:
                int resource = (Integer) msg.obj;
                MySmartImageView.this.setBackgroundResource(resource);
                break;
            }

        };
    };

    // The construction methods of the parent class
    public MySmartImageView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public MySmartImageView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public MySmartImageView(Context context) {
        super(context);
    }

    // A method of displaying pictures
    // path:The parameters of URL transmission
    public void setImageUrl(final String path) {
        new Thread() {
            public void run() {

                try {
                    URL url = new URL(path);

                    HttpURLConnection conn = (HttpURLConnection) url
                            .openConnection();
                    conn.setRequestMethod("GET");
                    conn.setConnectTimeout(5000);
                    int code = conn.getResponseCode();
                    if (code == 200) {
                        InputStream in = conn.getInputStream();

                        Bitmap bitmap = BitmapFactory.decodeStream(in);

                        Message msg = Message.obtain();
                        msg.obj = bitmap;
                        handler.sendMessage(msg);

                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }

            };
        }.start();
    }

    // A method of displaying pictures(Overloading method)
    // path:The parameters of URL transmission
    // resource:Default resources(If you can't find a resource through this URL)
    public void setImageUrl(final String path, final int resource) {

        new Thread() {
            public void run() {

                try {
                    URL url = new URL(path);
                    HttpURLConnection conn = (HttpURLConnection) url
                            .openConnection();
                    conn.setRequestMethod("GET");
                    conn.setConnectTimeout(5000);
                    int code = conn.getResponseCode();
                    if (code == 200) {
                        InputStream in = conn.getInputStream();

                        Bitmap bitmap = BitmapFactory.decodeStream(in);
                        Message msg = Message.obtain();
                        msg.what = REQUESTSUCCESS;
                        msg.obj = bitmap;
                        handler.sendMessage(msg);

                    } else {
                        Message msg = Message.obtain();
                        msg.what = REQUESTFAIL;
                        msg.obj = resource;
                        handler.sendMessage(msg);
                    }
                } catch (Exception e) {
                    Message msg = Message.obtain();
                    msg.what = ERROR;
                    msg.obj = resource;
                    handler.sendMessage(msg);
                }

            };
        }.start();

    }

}

 

 

兩個重載方法:

1:明確URL地址正確、不會失誤,直接調用

2:防止圖片URL出錯,設置預設資源,傳兩個參數

 

測試下:

package org.dreamtech.smartimageview;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        MySmartImageView iv = (MySmartImageView) findViewById(R.id.iv);

        iv.setImageUrl(
                "http://fanyi.bdstatic.com/static/translation/img/header/logo_cbfea26.png",
                R.drawable.default_ic);
    }

}

 

佈局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <org.dreamtech.smartimageview.MySmartImageView
        android:id="@+id/iv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
         />

</RelativeLayout>

 

 

這裡是一個正確地URL地址,結果如下:

 

 

接下來,我把URL地址改成錯誤的:

 

結果:

 

好的,完成!


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 第一種方法:一鍵修改LNMP環境下MYSQL資料庫密碼腳本 一鍵腳本肯定是非常方便。具體執行以下命令: ...
  • 已知條件如下: 插入數據如下: 既: 問題如下: Write an SQL query which returns for all current employees the start of their current period of continuous employment. That i ...
  • 本文內容: 什麼是代碼執行結構 順序結構 分支結構 迴圈結構 首發日期:2018-04-18 什麼是代碼執行結構: 這裡所說的代碼執行結構就是多條sql語句的執行順序。 代碼執行結構主要用於觸發器、存儲過程和函數等存儲多條sql語句中。 順序結構: 順序結構就是從上到下依次執行sql語句 一般預設情 ...
  • 本文為mariadb官方手冊:非遞歸CTE的譯文。 原文:https://mariadb.com/kb/en/library/non-recursive-common-table-expressions-overview/我提交到MariaDB官方手冊的譯文:https://mariadb.com/ ...
  • 一、概念 使用聚合框架可以對集合中的文檔進行變換和組合。基本上,可以用多個構件創建一個管道(pipeline),用於對一連串的文檔進行處理。這些構件包括篩選(filtering)、投射(projecting)、分組(grouping)、排序(sorting)、限制(limiting)和跳過(skip ...
  • 1.修改mysql的密碼: 之後輸入新密碼驗證就可以了; 2.顯示所有的資料庫 3.選擇資料庫 4.查看當前選擇的資料庫 5.查看當前mysql的版本 6.查看當前系統時間 7.查看當前用戶 ...
  • HttpTool.h HttpTool.m ...
  • JSON相比XML最顯著的優點是不需要使用重量級的解析庫,因為其本身就是面向數據的,而且非常容易轉換成哈希字典。除此之外,JSON文檔相比同樣的XML文檔更小。在網路寬頻有限的情況下,你很容易在Iphone中證明這一點。而且這一點對於iPhone來講尤為重要。一般用JSON文檔傳送相同的數據會比用X ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...