android自定义图片过渡效果,android 自定义属性实现 ImageView 透明度渐变效果

先看效果图:

1e6cb0227660a50c9662463fff1e08df.png882aede86a2e37e7418b2cff584d77d8.png

9785a77d5cc9258f83a254cdd6e91001.png

第一步:

在valuses下面自定义目录:

第二步:

自定义ImageView

package com.jiaruihuademo.myattrimageview;

import java.util.Timer;

import java.util.TimerTask;

import com.jiaruihuademo.myattrimageview.R;

import android.content.Context;

import android.content.res.TypedArray;

import android.graphics.Canvas;

import android.os.Handler;

import android.os.Message;

import android.util.AttributeSet;

import android.widget.ImageView;

public class AlphaImageView extends ImageView {

//图像透明度每次改变的大小

private int perAlpha = 0;

//当前图像的透明度

private int curAlpha = 0;

//每隔多长时间改变一次透明度

private int SPEED = 300;

public AlphaImageView(Context context, AttributeSet attrs) {

super(context, attrs);

// TODO Auto-generated constructor stub

//找到自定义的属性

TypedArray typedArray = context.obtainStyledAttributes(attrs,

R.styleable.AlphaImageView);

//获取duration参数

int duration = typedArray.getInt(R.styleable.AlphaImageView_duration, 0);

//计算透明度改变的大小

perAlpha = 255*SPEED/duration;

}

Handler handler = new Handler(){

public void handleMessage(Message msg) {

if (msg.what==0x123) {

curAlpha +=perAlpha;

if (curAlpha>255) {

curAlpha=255;

}

AlphaImageView.this.setAlpha(curAlpha);

}

};

};

@Override

protected void onDraw(Canvas canvas) {

this.setAlpha(curAlpha);

super.onDraw(canvas);

final Timer timer = new Timer();

timer.schedule(new TimerTask() {

@Override

public void run() {

// TODO Auto-generated method stub

Message msg = new Message();

msg.what=0x123;

if (curAlpha>255) {

timer.cancel();

}else {

handler.sendMessage(msg);

}

}

}, 0,SPEED);

}

}

第三步:

在layout布局下:

xmlns:jiaruihuademo="http://schemas.android.com/apk/res/com.jiaruihuademo.myattrimageview"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context=".MainActivity" >

android:id="@+id/imageView1"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:layout_below="@+id/textView1"

android:layout_centerHorizontal="true"

android:src="@drawable/t01397599f43ebc8f8c"

jiaruihuademo:duration="60000"/>

源码下载

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值