目的
设计一个飞入文字的动画演示
工具及环境
使用java语言,在Android studio平台上进行开发
功能设计
实现属性动画移动效果,补间动画移动效果,可通过两种移动的效果分析两种动画的异同。同时将属性动画旋转属性和移动属性结合起来成为新的组合效果
设计思路
先设计界面视图和功能按钮,实现功能
代码
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="文字飞入动画演示"
android:id="@+id/textView"
android:textSize&