首页

android 点赞动画效果示例代码

java

2020-8-19

package com.wg.demo;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.ImageView;

public class MainActivity extends Activity {
	private ImageView handImage;
	private Animation animation;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		handImage = (ImageView) findViewById(R.id.id_hand);
		animation = AnimationUtils.loadAnimation(this, R.anim.welcome_loading);
	}

	@Override
	protected void onResume() {
		super.onResume();
		handImage.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View v) {
//				animation.start();
				Log.i("debug", "click");
//				handImage.setAnimation(animation);
//				animation.start();
				handImage.startAnimation(animation);
			}
		});
	}
	
}
资源下载此资源下载价格为2D币(VIP免费),请先
资源文件列表
handSupportDemo/.classpath , 475
handSupportDemo/.project , 851
handSupportDemo/AndroidManifest.xml , 903
handSupportDemo/bin/AndroidManifest.xml , 903
handSupportDemo/bin/classes/com/wg/demo/BuildConfig.class , 331
handSupportDemo/bin/classes/com/wg/demo/MainActivity$1.class , 1103
handSupportDemo/bin/classes/com/wg/demo/MainActivity.class , 1500
handSupportDemo/bin/classes/com/wg/demo/R$anim.class , 378
handSupportDemo/bin/classes/com/wg/demo/R$attr.class , 319
handSupportDemo/bin/classes/com/wg/demo/R$dimen.class , 440
handSupportDemo/bin/classes/com/wg/demo/R$drawable.class , 420
handSupportDemo/bin/classes/com/wg/demo/R$id.class , 403
handSupportDemo/bin/classes/com/wg/demo/R$layout.class , 382
handSupportDemo/bin/classes/com/wg/demo/R$menu.class , 367
handSupportDemo/bin/classes/com/wg/demo/R$string.class , 451
handSupportDemo/bin/classes/com/wg/demo/R$style.class , 410
handSupportDemo/bin/classes/com/wg/demo/R.class , 642
handSupportDemo/bin/classes.dex , 1030496
handSupportDemo/bin/dexedLibs/android-support-v4-25e5205f7bcfd0e46bf8c8ab9f4dabeb.jar , 342766
handSupportDemo/bin/handSupportDemo.apk , 447462
handSupportDemo/bin/res/crunch/drawable-hdpi/ic_launcher.png , 5964
handSupportDemo/bin/res/crunch/drawable-mdpi/ic_launcher.png , 3112
handSupportDemo/bin/res/crunch/drawable-xhdpi/ic_launcher.png , 9355
handSupportDemo/bin/res/crunch/drawable-xxhdpi/ic_launcher.png , 17889
handSupportDemo/bin/resources.ap_ , 99514
handSupportDemo/gen/com/wg/demo/BuildConfig.java , 153
handSupportDemo/gen/com/wg/demo/R.java , 2807
handSupportDemo/ic_launcher-web.png , 51394
handSupportDemo/libs/android-support-v4.jar , 995386
handSupportDemo/proguard-project.txt , 781
handSupportDemo/project.properties , 563
handSupportDemo/res/anim/welcome_loading.xml , 1955
handSupportDemo/res/drawable-hdpi/ic_launcher.png , 7658
handSupportDemo/res/drawable-mdpi/ic_launcher.png , 3777
handSupportDemo/res/drawable-xhdpi/ic_launcher.png , 12516
handSupportDemo/res/drawable-xxhdpi/ic_launcher.png , 24777
handSupportDemo/res/drawable-xxhdpi/image_hand.jpg , 57417
handSupportDemo/res/layout/activity_main.xml , 975
handSupportDemo/res/menu/main.xml , 361
handSupportDemo/res/values/dimens.xml , 220
handSupportDemo/res/values/strings.xml , 232
handSupportDemo/res/values/styles.xml , 697
handSupportDemo/res/values-v11/styles.xml , 334
handSupportDemo/res/values-v14/styles.xml , 391
handSupportDemo/res/values-w820dp/dimens.xml , 381
handSupportDemo/src/com/wg/demo/MainActivity.java , 1116
没有账号? 忘记密码?

社交账号快速登录