Android ApiDemos示例解析(98):Views->Animation->Shake
程序员文章站
2022-03-01 20:52:03
...
本例为一密码输入框添加“Shake” 动画效果,模拟密码输入错误后左右摆动文本框以提示用户密码不正确。
代码如下:
Animation shake = AnimationUtils.loadAnimation(this, R.anim.shake);
findViewById(R.id.pw).startAnimation(shake);
Shake效果是通过 translate 平移Animation 设置 cycleInterpolator 周期循环运动来实现的。
anim 的shake.xml
<translate
xmlns:android=”http://schemas.android.com/apk/res/android”
android:fromXDelta=”0″ android:toXDelta=”10″
android:duration=”1000″ android:interpolator=”@anim/cycle_7″ />
而anim/cycle_7 定义如下:
<cycleInterpolator
xmlns:android=”http://schemas.android.com/apk/res/android”
android:cycles=”7″ />
文本框左右摆动7此产生摆动效果。
推荐阅读
-
Android ApiDemos示例解析(198):Views->WebView
-
Android ApiDemos示例解析(191):Views->Seek Bar
-
Android ApiDemos示例解析(186):Views->Radio Group
-
Android ApiDemos示例解析(192):Views->Spinner
-
Android ApiDemos示例解析(182):Views->Progress Bar->1. Incremental
-
Android ApiDemos示例解析(112):Views->Expandable Lists->1. Custom Adapter
-
Android ApiDemos示例解析(107):Views->Controls->1. Light Theme
-
Android ApiDemos示例解析(99):Views->Auto Complete->1. Screen Top
-
Android ApiDemos示例解析(120):Views->Gallery->2. People
-
Android ApiDemos示例解析(168):Views->Lists->1. Array