开源框架SmartImageView的使用

Posted lovejobs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了开源框架SmartImageView的使用相关的知识,希望对你有一定的参考价值。

1.SmartImageView为一个网络图片框架,可以将一个网络URL的图片展示在UI上

2.SmartImageView使用

@1Github上下载源代码

@2拷贝原码到工程src下

 

@3布局配置

<?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=".MainActivity">

    <com.loopj.android.image.SmartImageView
        android:id="@+id/siv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>

@4java代码

        SmartImageView  siv = (SmartImageView) findViewById(R.id.siv);
        String url = "http://192.168.199.213:8080/chushi.png";
        siv.setImageUrl(url);

 

以上是关于开源框架SmartImageView的使用的主要内容,如果未能解决你的问题,请参考以下文章

Android之网络编程

安卓开发:SmartImageView简单实现和应用

android SmartImageView的用法

SmartImageView初接触

SpringCloud系列四:Eureka 服务发现框架(定义 Eureka 服务端Eureka 服务信息Eureka 发现管理Eureka 安全配置Eureka-HA(高可用) 机制Eur(代码片段

Attempt to invoke virtual method 'void com.loopj.android.image.SmartImageView.setImageUrl(java.l