我正在创建一个 android 应用程序,在其中我想要像 facebook 这样的登录屏幕。当您打开 facebook android 应用程序时。第一个“FACEBOOK”文本出现在屏幕中央,然后在一段时间后向上滑动。出现用户 ID 和密码用一个按钮。
我想在我的应用程序中使用类似的动画。
我怎么做。我正在使用以下方法
我的 animate.xml 文件
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator" >
<translate android:duration="2000"
android:fromYDelta="0"
android:toYDelta="-100%p" />
</set>
和java代码。
final Animation animAccelerateDecelerate = AnimationUtils.loadAnimation(this, R.drawable.animatetext);
final TextView text = (TextView)findViewById(R.id.Logo);
text.startAnimation(animAccelerateDecelerate);
但它不工作..帮助请谢谢