android之imgView外掛程式的使用

來源:互聯網
上載者:User

標籤:

在開發中我們經常要用到圖片下載功能,但我們可以在github上淘一些比較好的外掛程式,這裡介紹一款叫smartImageView的外掛程式。

這裡是其地址https://github.com/loopj/android-smart-image-view

使用方法
package xidian.dy.com.chujia;import android.os.Bundle;import android.support.v7.app.AppCompatActivity;import android.view.View;import android.widget.Button;import com.loopj.android.image.SmartImageView;public class MainActivity extends AppCompatActivity {    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        Button btn = (Button) findViewById(R.id.btn);        if(btn != null)            btn.setOnClickListener(new MyLister());    }    class MyLister implements View.OnClickListener{        @Override        public void onClick(View v) {            String url = "http://192.168.0.109/dog.jpg";            SmartImageView siv = (SmartImageView) findViewById(R.id.img);            if(siv != null)                siv.setImageUrl(url);        }    }}

布局檔案

<?xml version="1.0" encoding="utf-8"?><LinearLayout 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:orientation="vertical"    tools:context="xidian.dy.com.chujia.MainActivity">        <Button           android:id="@+id/btn"           android:layout_width="wrap_content"           android:layout_height="wrap_content"           android:text="@string/delete"           />        <com.loopj.android.image.SmartImageView            android:id="@+id/img"            android:layout_width="100dp"            android:layout_height="100dp"            android:src="@drawable/dog1"            /></LinearLayout>

這裡可以和自己的動手寫的圖片載入做一下對比

http://www.cnblogs.com/xidongyu/p/5612545.html

android之imgView外掛程式的使用

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.