实现网络图片的加载

SmartImageView 是一个Android替代标准ImageView,可以将图像从url(网络地址)或用户的联系人图片中进行加载。通过将图像缓存在内存和磁盘中来使图片加载更快

作为ImageView的替代
可以从一个URL装载图像
可以从手机的联系人通讯录加载图片

布局界面

    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity" >


            android:id="@+id/iv"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1" />


            android:id="@+id/et_path"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="请输入图片路径"
        android:text="http://b.hiphotos.baidu.com/image/w%3D310/sign=a439f5b24510b912bfc1f0fff3fdfcb5/83025aafa40f4bfb92c52c5d014f78f0f73618a5.jpg"
        android:maxLines="1" />


   

你可能感兴趣的:(实现网络图片的加载)