文本窗口抖动和位移效果

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文本窗口抖动和位移效果相关的知识,希望对你有一定的参考价值。

  1. 在AppDemo的Animation1.java中
    1. publicvoid onClick(View v){
    2. Animation shake =AnimationUtils.loadAnimation(this, R.anim.shake);
    3. findViewById(R.id.pw).startAnimation(shake);
    4. }
     
  2. anim\shake.xml
    1. <translate xmlns:android="http://schemas.android.com/apk/res/android"
    2. android:duration="1000"
    3. android:fromXDelta="0"
    4. android:interpolator="@anim/cycle_7" //插入器
    5. android:toXDelta="10"/>
     
  3. anim\cycle_7.xml
    1. <cycleInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
    2. android:cycles="7"/>
     
  4. 震动效果(1-3为位移效果)
    1. // 加入震动效果 ,需要加入震动权限
    2. Vibrator vibrator =(Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
    3. vibrator.vibrate(2000);
    1. <uses-permission android:name="android.permission.VIBRATE"/>
    模拟器测试不了,要用真机测试的哦;
    1. // 加入震动效果 ,需要加入震动权限
    2. Vibrator vibrator =(Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
    3. //vibrator.vibrate(2000); // 表示震动两秒
    4. // 表示休息2秒,震动3秒,在休息2秒,在震动三秒,-1表示不重复,如果传入2,则前面的规则重复两次
    5. vibrator.vibrate(newlong[]{2000,3000,2000,3000},-1);
     





以上是关于文本窗口抖动和位移效果的主要内容,如果未能解决你的问题,请参考以下文章

给文本添加抖动闪烁的噪声效果

layer实现窗口抖动效果

WPF window 子窗口反馈效果(抖动/阴影渐变)

模拟QQ窗口抖动效果(通过MoveWindow和Sleep进行模拟)

模拟qq窗口抖动效果

模拟qq窗口抖动效果