• android异步下载图片


    android应用,有些要从网络上下载图片,有几种方法:

    1、

    2、使用AQuery

      simple:

        aq.id(R.id.image1).image("http://...")

      cache control

        boolean memcache=false;

        boolean filecache=true;

        aq.id(R.id.image1).image("http://...",memcache,filecache);

      down sampling

        aq.id(R.id.image1).image(imageUrl,true,true,200,0)

      Fallback Image

      // if we are not able to load the image ,use a default image

        aq.id(R.id.image1).image(imageUrl,true,true,200,0,R.drawable.default_image)

      Preloading

      Progress

        

    String imageUrl = "http://farm6.static.flickr.com/5035/5802797131_a729dac808_b.jpg";		
    aq.id(R.id.image).progress(R.id.progress).image(imageUrl, false, false);

    Sample grid item layout:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="100dip" 
        >
        
        <ProgressBar 		
    	android:layout_width="15dip"       
            android:layout_height="15dip"
    	android:id="@+id/progress" 
    	android:layout_centerInParent="true"
    	/>
        
        <ImageView
            android:id="@+id/image"       
            android:layout_width="fill_parent"       
            android:layout_height="75dip"
            />
    
    </RelativeLayout>

    等等还有很多,

    网址:http://code.google.com/p/android-query/wiki/ImageLoading

     android 有时侯LOGCAT没有东西,点一下DDMS就ok了

  • 相关阅读:
    论文笔记:SRCNN
    4.2 CNN实例探究
    4.1 卷积神经网络
    3 ML策略
    2.3 超参数调试,batch正则化和程序框架
    2.2 优化算法
    2.1 深度学习的实用层面
    Lecture4 反向传播算法
    Lecture3 神经网络学习
    java基础部分
  • 原文地址:https://www.cnblogs.com/zhanglanyun/p/2542271.html
Copyright © 2020-2023  润新知