Android FlipLayout 翻转动画
这周新功能有一个类似 Web 版 Google+ 翻转的特效,Android 自带的动画效果全是基于平面的,像实现这种 3D 效果必须要自定义,于是自己写了个 demo。效果如下:
主要思路其实也蛮简单的,主要是自定义一个 Animation,然后在 applyTransformation 方法里通过矩阵变换让其按照 y 轴旋转,只是在旋转到中间画面的切换细节稍微处理下。
使用
用法非常简单,可以直接在 xml 中使用,类似下面:
<?xml version="1.0" encoding="utf-8"?>
<com.storm.fliplayout.lib.FlipLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/flipLayout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_gravity="center"
android:background="#FFCCCCCC"
android:gravity="center"
android:text="@string/front"
android:textAppearance="@android:style/TextAppearance.Large" />
<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_centerInParent="true"
android:layout_gravity="center"
android:background="#FF999999"
android:gravity="center"
android:text="@string/back"
android:textAppearance="@android:style/TextAppearance.Large"
android:visibility="gone" />
</com.storm.fliplayout.lib.FlipLayout>
当然使用中不仅限于 TextView,你同样可以放很负责的布局进去,但是要注意保证 FlipLayout 只有两个 child。
Github 地址: FlipLayout
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论