码迷,mamicode.com
首页 > 移动开发 > 详细

[android] 手机卫士输入框抖动和手机震动

时间:2016-04-23 22:47:21      阅读:303      评论:0      收藏:0      [点我收藏+]

标签:

查看apiDemos,找到View/Animation/shake找到对应的动画代码,直接拷贝过来

当导入一个项目的时候,报R文件不存在,很多情况是xml文件出错了

Animation shake = AnimationUtils.loadAnimation(this, R.anim.shake);

et_phone.startAnimation(shake);

动画的xml文件shake.xml

android:interpolator="@anim/cycle_7"

interpolator是插入器,可以定义动画的速度等

调用Animation对象的setInterpolator()方法,设置插入器,参数:Interpolator对象

匿名实现Interpolator接口,重写getInterpolation()方法,设置中自定义动画速率,传入一个flaot x

 

输入框的震动效果

获取Vibrator对象,调用getSystemService()方法,参数:VIBRATOR_SERVICE

调用Vibrator对象的vibrate()方法,参数:毫秒

需要添加权限android.permission.VIBRATE

 

这个可以做一些振动器~

 

    /**
     * 查询归属地
     */
    public void queryNumber(View v) {
        phone = et_phone.getText().toString().trim();
        if (TextUtils.isEmpty(phone)) {
            //抖动动画
            Animation shake = AnimationUtils.loadAnimation(this, R.anim.shake);
            et_phone.startAnimation(shake);
            //手机震动
            vibrator.vibrate(2000);
            Toast.makeText(this, "请输入手机号码", 0).show();
            return;
        }
        String result = NumberQueryAddressUtil.queryAddress(phone);
        tv_address.setText(result);
    }

 

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" />

cycle_7.xml

<cycleInterpolator xmlns:android="http://schemas.android.com/apk/res/android" android:cycles="7" />

 

[android] 手机卫士输入框抖动和手机震动

标签:

原文地址:http://www.cnblogs.com/taoshihan/p/5425895.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!