文本窗口抖动和位移效果
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文本窗口抖动和位移效果相关的知识,希望对你有一定的参考价值。
- 在AppDemo的Animation1.java中
publicvoid onClick(View v){
Animation shake =AnimationUtils.loadAnimation(this, R.anim.shake);
findViewById(R.id.pw).startAnimation(shake);
}
-
anim\shake.xml
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="1000"
android:fromXDelta="0"
android:interpolator="@anim/cycle_7" //插入器
android:toXDelta="10"/>
-
anim\cycle_7.xml
<cycleInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
android:cycles="7"/>
-
震动效果(1-3为位移效果)
// 加入震动效果 ,需要加入震动权限
Vibrator vibrator =(Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
vibrator.vibrate(2000);
<uses-permission android:name="android.permission.VIBRATE"/>
模拟器测试不了,要用真机测试的哦;// 加入震动效果 ,需要加入震动权限
Vibrator vibrator =(Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
//vibrator.vibrate(2000); // 表示震动两秒
// 表示休息2秒,震动3秒,在休息2秒,在震动三秒,-1表示不重复,如果传入2,则前面的规则重复两次
vibrator.vibrate(newlong[]{2000,3000,2000,3000},-1);
以上是关于文本窗口抖动和位移效果的主要内容,如果未能解决你的问题,请参考以下文章