android 双击图片放大缩小

简介:
package com.szxys.doubleclike;

import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Matrix;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.provider.ContactsContract.CommonDataKinds.Im;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.ScaleAnimation;
import android.widget.ImageView;

public class DoubleClickActivity extends Activity {
	/** Called when the activity is first created. */
	private ImageView image;
	private Bitmap bitmap;
	private boolean isbig = false;
	private int count = 2;

	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		image = (ImageView) findViewById(R.id.image);
		bitmap = BitmapFactory
				.decodeResource(getResources(), R.drawable.girl_1);
		image.setBackgroundResource(R.drawable.girl_1);
		image.setOnClickListener(new clike());

	}

	private long sTime = 0;
	private long eTime = 0;
	private Drawable drawable;
	
	interface TimeListener{
		public long getCurrentTime();
	}
	class clike implements View.OnClickListener,  TimeListener{

		@Override
		public long getCurrentTime() {
			// TODO Auto-generated method stub
			return System.currentTimeMillis();
		}

		@Override
		public void onClick(View v) {
				// TODO Auto-generated method stub
				if(sTime!=0&&(getCurrentTime()-sTime>500)){
					sTime = 0;
					count=2;
				}
				if (!isbig) {
					--count;
					if (count > 0) {
						sTime = getCurrentTime();
						System.out.println(sTime + "--s--");
					}
					if (count == 0) {
						eTime = getCurrentTime();
						System.out.println(sTime + "--e--");
						if ((eTime - sTime) <= 500) {
							drawable = resizeImage(bitmap,
									bitmap.getWidth() * 4, bitmap.getHeight() * 4);
							image.setBackgroundDrawable(drawable);
							ScaleAnimation animation = new ScaleAnimation(0.25f, 1.0f, 0.25f, 1.0f,
									Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0f);
							animation.setDuration(500);
							animation.setAnimationListener(new Animation.AnimationListener() {
								@Override
								public void onAnimationStart(Animation animation) {
									// TODO Auto-generated method stub
								}
								
								@Override
								public void onAnimationRepeat(Animation animation) {
									// TODO Auto-generated method stub
								}
								
								@Override
								public void onAnimationEnd(Animation animation) {
									// TODO Auto-generated method stub
									isbig = true;
									sTime = 0;
									eTime = 0;
									count = 2;
								}
							});
							image.setAnimation(animation);
							System.out.println("----------haha--------------");
						}
					}
				}else{
					--count;
					if (count > 0) {
						sTime = getCurrentTime();
						System.out.println(sTime + "--s--");
					}
					if (count == 0) {
						eTime = getCurrentTime();
						System.out.println(sTime + "--e--");
						Drawable Tempdrawable = drawable;
						final Bitmap bitmap = ((BitmapDrawable)Tempdrawable).getBitmap();
						if ((eTime - sTime) <= 500) {
							drawable = resizeImage(bitmap,
									bitmap.getWidth()/4, bitmap.getHeight()/4);
							ScaleAnimation animation = new ScaleAnimation(1.0f, 0.25f, 1.0f, 0.25f,
									Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0f);
							animation.setDuration(500);
							animation.setAnimationListener(new Animation.AnimationListener() {
								@Override
								public void onAnimationStart(Animation animation) {
								}
								@Override
								public void onAnimationRepeat(Animation animation) {
								}
								@Override
								public void onAnimationEnd(Animation animation) {
									image.clearAnimation();
									image.setBackgroundDrawable(drawable);
									isbig = false;
									sTime = 0;
									eTime = 0;
									count = 2;
								}
							});
							image.setBackgroundDrawable(Tempdrawable);
							image.setAnimation(animation);
							System.out.println("----------haha--------------");
						}
					}
				}

			}

		}

	// 压缩图片到指定大小
	public static Drawable resizeImage(Bitmap bitmap, int w, int h) {
		Bitmap BitmapOrg = bitmap;
		int width = BitmapOrg.getWidth();
		int height = BitmapOrg.getHeight();
		int newWidth = w;
		int newHeight = h;
		float scaleWidth = ((float) newWidth) / width;
		float scaleHeight = ((float) newHeight) / height;
		Matrix matrix = new Matrix();
		matrix.postScale(scaleWidth, scaleHeight);
		Bitmap resizedBitmap = Bitmap.createBitmap(BitmapOrg, 0, 0, width,
				height, matrix, true);
		return new BitmapDrawable(resizedBitmap);

	}
}

目录
打赏
0
0
0
0
66
分享
相关文章
Android Studio App开发之对图片进行简单加工(包括放缩,旋转等等 附源码)
Android Studio App开发之对图片进行简单加工(包括放缩,旋转等等 附源码)
244 0
Android通过手势(多点)缩放和拖拽图片
Android通过手势(多点)缩放和拖拽图片
99 4
android 下载图片的问题
android 下载图片的问题
78 3
Android经典面试题之图片Bitmap怎么做优化
本文介绍了图片相关的内存优化方法,包括分辨率适配、图片压缩与缓存。文中详细讲解了如何根据不同分辨率放置图片资源,避免图片拉伸变形;并通过示例代码展示了使用`BitmapFactory.Options`进行图片压缩的具体步骤。此外,还介绍了Glide等第三方库如何利用LRU算法实现高效图片缓存。
107 20
Android经典面试题之图片Bitmap怎么做优化
Android12 双击power键启动相机源码解析
Android12 双击power键启动相机源码解析
232 0
Android平台RTMP推送|轻量级RTSP服务|GB28181接入之文字、png图片水印的精进之路
本文探讨了Android平台上推流模块中添加文字与PNG水印的技术演进。自2015年起,为了满足应急指挥及安防领域的需求,逐步发展出三代水印技术:第一代为静态文字与图像水印;第二代实现了动态更新水印内容的能力,例如实时位置与时间信息;至第三代,则优化了数据传输效率,直接使用Bitmap对象传递水印数据至JNI层,减少了内存拷贝次数。这些迭代不仅提升了用户体验和技术效率,也体现了开发者追求极致与不断创新的精神。
Android经典实战之如何获取图片的经纬度以及如何根据经纬度获取对应的地点名称
本文介绍如何在Android中从图片提取地理位置信息并转换为地址。首先利用`ExifInterface`获取图片内的经纬度,然后通过`Geocoder`将经纬度转为地址。注意操作需在子线程进行且考虑多语言支持。
426 4
Android经典实战之Kotlin中实现圆角图片和圆形图片
本文介绍两种实现圆角图像视图的方法。第一种是通过自定义Kotlin `AppCompatImageView`,重写`onDraw`方法使用`Canvas`和`Path`进行圆角剪裁。第二种利用Android Material库中的`ShapeableImageView`,简单配置即可实现圆角效果。两种方法均易于实现且提供动态调整圆角半径的功能。
146 0
|
11月前
|
Android App开发即时通信中通过SocketIO在客户端与服务端间传输文本和图片的讲解及实战(超详细 附源码)
Android App开发即时通信中通过SocketIO在客户端与服务端间传输文本和图片的讲解及实战(超详细 附源码)
579 0
18. 【Android教程】图片控件 ImageView
18. 【Android教程】图片控件 ImageView
150 4

热门文章

最新文章