android_实现EditText的抖动效果

   



很多时候,我们都要提醒用户输入框的内容不能为空。通常我们都会弹出一个Toast来提醒用户,有一个更加人性化的提醒方式,就是让输入框抖一下。效果图如下:

android_实现EditText的抖动效果_第1张图片

    


 如何实现这个效果呢。很简单。只需两行代码。

    public void onClick(View v) {
        Animation shake = AnimationUtils.loadAnimation(this, R.anim.shake);
        findViewById(R.id.pw).startAnimation(shake);
    }




然后我们在res/anim里放两个文件就好。shake.xml,内容如下:



xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXDelta="0"
android:toXDelta="10"
android:duration="1000"
android:interpolator="@anim/cycle_7" />



cycle_7.xml内容如下


 android:cycles="7" />

 




代码逻辑不难,就是做了个左右位移的动画。方便以后直接用,故写此文章

你可能感兴趣的:(android)