Android动画之补间动画(XML 形式)

android:fromYScale=“1”

android:toXScale=“3”

android:toYScale=“3”

android:pivotY=“50%”

android:pivotX=“50%”>

anim_group.xml

<?xml version="1.0" encoding="utf-8"?>

<set xmlns:android=“http://schemas.android.com/apk/res/android”

android:duration=“3000”

android:fillAfter=“true”

<alpha

android:fromAlpha=“1”

android:toAlpha=“0.5”>

<scale

android:fromXScale=“1”

android:fromYScale=“1”

android:toXScale=“3”

android:toYScale=“3”

android:pivotY=“50%”

android:pivotX=“50%”>

FourActivity.java

public class FourActivity extends AppCompatActivity implements View.OnClickListener {

private Button btn_alpha;

private Button btn_translate;

private Button btn_rotate;

private Button btn_scale;

private ImageView iv_show;

Animation animation;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_four);

initView();

}

private void initView() {

btn_alpha = (Button) findViewById(R.id.btn_alpha);

btn_translate = (Button) findViewById(R.id.btn_translate);

btn_rotate = (Button) findViewById(R.id.btn_rotate);

btn_scale = (Button) findViewById(R.id.btn_scale);

iv_show = (ImageView) findViewById(R.id.iv_show);

btn_alpha.setOnClickListener(this);

btn_translate.setOnClickListener(this);

btn_rotate.setOnClickListener(this);

btn_scale.setOnClickListener(this);

}

@Override

public void onClick(View v) {

switch (v.getId()) {

case R.id.btn_alpha://透明动画

//如果要用静态的动画(xml),就得用这个API

animation = AnimationUtils.loadAnimation(this, R.anim.anim_alpha);

break;

case R.id.btn_translate://位移动画

animation = AnimationUtils.loadAnimation(this, R.anim.anim_translate);

break;

case R.id.btn_rotate://旋转动画

animation = AnimationUtils.loadAnimation(this, R.anim.anim_rotate);

break;

case R.id.btn_scale://缩放动画

animation = AnimationUtils.loadAnimation(this, R.anim.anim_scale);

break;

}

iv_show.startAnimation(animation);

}

public void groupshow(View view) {//组合

animation = AnimationUtils.loadAnimation(this, R.anim.anim_group);

iv_show.startAnimation(animation);

}

}

activity_four.xml

<RelativeLayout xmlns:android=“http://schemas.android.com/apk/res/android”

xmlns:app=“http://schemas.android.com/apk/res-auto”

xmlns:tools=“http://schemas.android.com/tools”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

tools:context=“.FourActivity”>

<LinearLayout

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:orientation=“horizontal”>

<Button

android:id=“@+id/btn_alpha”

android:layout_width=“0dp”

android:layout_height=“40dp”

android:layout_weight=“1”

android:text=“透明动画” />

<Button

android:id=“@+id/btn_translate”

android:layout_width=“0dp”

android:layout_height=“40dp”

android:layout_weight=“1”

android:text=“位移动画” />

<Button

android:id=“@+id/btn_rotate”

android:layout_width=“0dp”

android:layout_height=“40dp”

android:layout_weight=“1”

android:text=“旋转动画” />

<Button

android:id=“@+id/btn_scale”

android:layout_width=“0dp”

android:layout_height=“40dp”

android:layout_weight=“1”

android:text=“缩放动画” />

<ImageView

android:id=“@+id/iv_show”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_centerInParent=“true”

android:src=“@mipmap/ic_launcher” />

<Button

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_alignParentBottom=“true”

android:onClick=“groupshow”

最后

跳槽季整理面试题已经成了我多年的习惯!在这里我和身边一些朋友特意整理了一份快速进阶为Android高级工程师的系统且全面的学习资料。涵盖了Android初级——Android高级架构师进阶必备的一些学习技能。

附上:我们之前因为秋招收集的二十套一二线互联网公司Android面试真题(含BAT、小米、华为、美团、滴滴)和我自己整理Android复习笔记(包含Android基础知识点、Android扩展知识点、Android源码解析、设计模式汇总、Gradle知识点、常见算法题汇总。)

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化学习资料的朋友,可以戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

、设计模式汇总、Gradle知识点、常见算法题汇总。)

[外链图片转存中…(img-pAAP0qf8-1714365866670)]

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化学习资料的朋友,可以戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

  • 29
    点赞
  • 18
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值