• Android显示GIF动画完整示例(一)


    MainActivity如下:

    package cc.testgif;
    
    import com.ant.liao.GifView;
    import com.ant.liao.GifView.GifImageType;
    import android.os.Bundle;
    import android.view.View;
    import android.view.View.OnClickListener;
    import android.app.Activity;
    /**
     * Demo描述:
     * 利用第三方控件显示GIF动画
     * 
     * 参考资料:
     * http://blog.csdn.net/leilu2008/article/details/6822517#
     * http://code.google.com/p/gifview/source/checkout
     * Thank you very much
     */
    public class MainActivity extends Activity {
        private GifView mGifView;
    	@Override
    	protected void onCreate(Bundle savedInstanceState) {
    		super.onCreate(savedInstanceState);
    		setContentView(R.layout.main);
    		init();
    	}
    
    	private void init(){
    		mGifView = (GifView) findViewById(R.id.gifView);
    		mGifView.setGifImage(R.drawable.gif);
    		mGifView.setOnClickListener(new OnClickListener() {
    			@Override
    			public void onClick(View v) {
    				System.out.println(" Click ");
    			}
    		});
    		mGifView.setShowDimension(300, 300);
    		//加载方式
    		mGifView.setGifImageType(GifImageType.COVER);
    	}
    
    }
    


     

    main.xml如下:

    <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"
        >
    
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/hello_world"
            android:layout_centerHorizontal="true" />
        
        <com.ant.liao.GifView
            android:id="@+id/gifView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:enabled="false"
            android:layout_centerInParent="true" />
    
    </RelativeLayout>


     

  • 相关阅读:
    order by子句
    having和where的区别
    O2O模式为什么这么火
    高德----------百度地图
    list后台转化为JSON的方法ajax
    ajax中后台string转json
    ERROR: JDWP Unable to get JNI 1.2 environment, jvm->GetEnv() return code = -2
    压缩文件解压
    个人作业3——个人总结(Alpha阶段)
    第08周-集合与泛型
  • 原文地址:https://www.cnblogs.com/suncoolcat/p/3324949.html
Copyright © 2020-2023  润新知