使用XML在Android中创建3D翻页动画

前端之家收集整理的这篇文章主要介绍了使用XML在Android中创建3D翻页动画前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用 this android tutorial创建了一个视图的3D翻转
但是,我已经以编程方式完成了,如果可能,我想在xml中完成所有操作。我不是在谈论简单地缩小视图到中间然后退出,而是一个实际的3D翻转。

这可能通过xml吗?

这是答案,虽然它只适用于3.0及以上版本。

1)创建一个名为“animator”的新资源文件夹。

2)创建一个新的.xml文件,我将其称为“翻转”。使用以下xml代码

<?xml version="1.0" encoding="utf-8"?>
<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
    android:valueFrom="0" android:valueTo="360" android:propertyName="rotationY" >
</objectAnimator>

否,objectAnimator标签不以大写“O”开头。

3)使用以下代码启动动画:

ObjectAnimator anim = (ObjectAnimator) AnimatorInflater.loadAnimator(mContext,R.animator.flipping); 
anim.setTarget(A View Object reference goes here i.e. ImageView);
anim.setDuration(3000);
anim.start();

我从here收到了这一切。

原文链接:https://www.f2er.com/xml/293327.html

猜你在找的XML相关文章