android 实现控件左右或上下抖动教程

差不多一年前在自己的项目中用过这效果,虽然很简单,但还是写写。

1、首先在你的res目录下新建anim子目录,并在anim目录下新建两个文件:

(1)shake.xml文件(位移/平移:translate),设置起始的位移范围、效果时间、循环次数

<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
  android:fromXDelta="0"
  android:toXDelta="10"
  android:duration="500"
  android:interpolator="@anim/share_cycle">
  <!--.
    fromXDelta:x轴起点抖动位置
    toXDelta:x轴终点抖动位置
    duration:循环播放的时间
    interpolator:循环不放设置(次数)
  -->
</translate>

(2)cycle.xml文件,控制循环次数

<?xml version="1.0" encoding="utf-8"?>
<cycleInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
  android:cycles="2"><!--. 循环次数 -->

</cycleInterpolator><!--. 循环播放 -->

最后给你的控件设置改动画属性

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

这里ivShake是ImageView,就是这么简单。

2、个人碰到一个问题就是在Activity实现监听中添加动画效果第一次没有反应,不知道为什么

补充知识:Android 抖动提示动画

左右抖动

ObjectAnimator animator = ObjectAnimator.ofFloat(textView, "translationX", 0, 100, -100,0);
animator.setDuration(200);
animator.start();

重复左右抖动

Animation translateAnimation = new TranslateAnimation(-20, 20, 0, 0);
translateAnimation.setDuration(100);//每次时间
translateAnimation.setRepeatCount(10);//重复次数
/**倒序重复REVERSE 正序重复RESTART**/
translateAnimation.setRepeatMode(Animation.REVERSE);
nope.startAnimation(translateAnimation);
  public static void Shakeview( View view) {
    Animation translateAnimation = new TranslateAnimation(-10, 10, 0, 0);
    translateAnimation.setDuration(50);//每次时间
    translateAnimation.setRepeatCount(10);//重复次数
/**倒序重复REVERSE 正序重复RESTART**/
    translateAnimation.setRepeatMode(Animation.REVERSE);
    view.startAnimation(translateAnimation);
  }

左右上下抖动

ObjectAnimator animator = tada(clickMe);
animator.setRepeatCount(ValueAnimator.INFINITE);
animator.start();

public static ObjectAnimator tada(View view) {
  return tada(view, 2f);
}

public static ObjectAnimator tada(View view, float shakeFactor) {

  PropertyValuesHolder pvhScaleX = PropertyValuesHolder.ofKeyframe(View.SCALE_X,
      Keyframe.ofFloat(0f, 1f),
      Keyframe.ofFloat(.1f, .9f),
      Keyframe.ofFloat(.2f, .9f),
      Keyframe.ofFloat(.3f, 1.1f),
      Keyframe.ofFloat(.4f, 1.1f),
      Keyframe.ofFloat(.5f, 1.1f),
      Keyframe.ofFloat(.6f, 1.1f),
      Keyframe.ofFloat(.7f, 1.1f),
      Keyframe.ofFloat(.8f, 1.1f),
      Keyframe.ofFloat(.9f, 1.1f),
      Keyframe.ofFloat(1f, 1f)
  );

  PropertyValuesHolder pvhScaleY = PropertyValuesHolder.ofKeyframe(View.SCALE_Y,
      Keyframe.ofFloat(0f, 1f),
      Keyframe.ofFloat(.1f, .9f),
      Keyframe.ofFloat(.2f, .9f),
      Keyframe.ofFloat(.3f, 1.1f),
      Keyframe.ofFloat(.4f, 1.1f),
      Keyframe.ofFloat(.5f, 1.1f),
      Keyframe.ofFloat(.6f, 1.1f),
      Keyframe.ofFloat(.7f, 1.1f),
      Keyframe.ofFloat(.8f, 1.1f),
      Keyframe.ofFloat(.9f, 1.1f),
      Keyframe.ofFloat(1f, 1f)
  );

  PropertyValuesHolder pvhRotate = PropertyValuesHolder.ofKeyframe(View.ROTATION,
      Keyframe.ofFloat(0f, 0f),
      Keyframe.ofFloat(.1f, -3f * shakeFactor),
      Keyframe.ofFloat(.2f, -3f * shakeFactor),
      Keyframe.ofFloat(.3f, 3f * shakeFactor),
      Keyframe.ofFloat(.4f, -3f * shakeFactor),
      Keyframe.ofFloat(.5f, 3f * shakeFactor),
      Keyframe.ofFloat(.6f, -3f * shakeFactor),
      Keyframe.ofFloat(.7f, 3f * shakeFactor),
      Keyframe.ofFloat(.8f, -3f * shakeFactor),
      Keyframe.ofFloat(.9f, 3f * shakeFactor),
      Keyframe.ofFloat(1f, 0)
  );

  return ObjectAnimator.ofPropertyValuesHolder(view, pvhScaleX, pvhScaleY, pvhRotate).
      setDuration(1000);
}

以上这篇android 实现控件左右或上下抖动教程就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。

(0)

相关推荐

  • Android Studio自动提取控件Style样式教程

    如题,有时候看见一个布局写上几百行看上去会非常吃力麻烦,这时候抽取控件样式很有必要了, Android Studio提供了抽取Style样式的方式, 可能是藏的太深了, 很少人用 光标放在控件内: 右键 –>Refactor –> Extract –>Style- 选择之后弹出对话框: 如果你用的很多, 也可以为它设置快捷键: 打开Android Studio设置页面, 在Keymap中搜索extract, Style就是了, 然后右键单击Style 为它添加快捷键 弹出窗口, 直接按你

  • Android控件CardView实现卡片布局

    CardView介绍 CardView是Android 5.0系统引入的控件,相当于FragmentLayout布局控件然后添加圆角及阴影的效果:CardView被包装为一种布局,并且经常在ListView和RecyclerView的Item布局中,作为一种容器使用.CardView应该被使用在显示层次性的内容时:在显示列表或网格时更应该被选择,因为这些边缘可以使得用户更容易去区分这些内容. 使用 先看效果 首先在build.gradle文件添加依赖库 dependencies { compil

  • android 实现控件左右或上下抖动教程

    差不多一年前在自己的项目中用过这效果,虽然很简单,但还是写写. 1.首先在你的res目录下新建anim子目录,并在anim目录下新建两个文件: (1)shake.xml文件(位移/平移:translate),设置起始的位移范围.效果时间.循环次数 <?xml version="1.0" encoding="utf-8"?> <translate xmlns:android="http://schemas.android.com/apk/r

  • Android设置控件阴影的三种方法

    本文实例为大家分享了Android设置控件阴影的方法,供大家参考,具体内容如下 第一种方式:elevation View的大小位置都是通过x,y确定的,而现在有了z轴的概念,而这个z值就是View的高度(elevation),而高度决定了阴影(shadow)的大小. View Elevation(视图高度) View的z值由两部分组成,elevation和translationZ(它们都是Android L新引入的属性). eleavation是静态的成员,translationZ是用来做动画.

  • Android AutoCompleteTextView控件基本用法示例

    本文实例讲述了Android AutoCompleteTextView控件基本用法.分享给大家供大家参考,具体如下: 当输入部分内容之后会有相关的建议,类似于百度提示信息 1.在布局文件中声明一个AutoCompleteTextView <AutoCompleteTextView android:id="@+id/autocomplete_country" android:layout_width="fill_parent" android:layout_he

  • Android Tab 控件详解及实例

    Android Tab 控件详解及实例 在桌面应用中Tab控件使用得非常普遍,那么我们经常在Android中也见到以Tab进行布局的客户端.那么Android中的Tab是如何使用的呢? 1.Activity package com.wicresoft.activity; import com.wicresoft.myandroid.R; import android.app.TabActivity; import android.os.Bundle; import android.util.Lo

  • Android TextView控件文字添加下划线的实现方法

    如下所示: TextView tv = (TextView) findViewById(R.id.text); tv.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG); tv.setText("添加下划线"); 以上就是小编为大家带来的Android TextView控件文字添加下划线的实现方法的全部内容了,希望对大家有所帮助,多多支持我们~

  • Android基础控件(EditView、SeekBar等)的使用方法

    android提供了大量的UI控件,本文将介绍TextView.ImageView.Button.EditView.ProgressBar.SeekBar.ScrollView.WebView的使用方法.在介绍各种控件之前,先简单介绍android UI控件最基本的几种属性: id: id是控件唯一标识符,可通过**findViewById(R.id.*)**操作控件. layout_width:控件宽度,可设置为match_parent(充满父布局,即让父布局决定当前控件的宽度).wrap_c

  • Android Service控件用法实例分析

    本文实例讲述了Android Service控件用法.分享给大家供大家参考,具体如下: 1.Service是一个应用程序的组件 2.Service没有图形化界面 3.用来处理耗时比较长的功能(下载.播放MP3) 4.更新ContentProvider.Intent以及系统的启动 Servcie不是一个单独的进程,不是一个线程 定义一个Service比较简单,只要继承Service类,实现其生命周期的方法即可.一个定义好的Service必须在AndroidManifest.xml文件中通过<ser

  • android倒计时控件示例

    本文为大家分享了android倒计时控件,供大家参考,具体代码如下 /* * Copyright (C) 2012 The * Project * All right reserved. * Version 1.00 2012-2-11 * Author veally@foxmail.com */ package com.ly.sxh.view; import android.content.Context; import android.database.ContentObserver; im

  • Android Chronometer控件实现计时器函数详解

    本文为大家演示了如何使用Chronometer控件实现Android计时器的实例. 先贴上最终的实现效果图: Android计时器实现思路 使用Chronometer控件实现计器的操作.通过设置setBase(long base)来设置初始时间,然后为其添加一个 setOnChronometerTickListener(Chronometer.OnChronometerTickListener l)事件来判断时间是否到了,然后再调用其stop()方法实现停止计时. Android计时器实现代码

  • Android常见控件使用详解

    本文实例为大家分享了六种Android常见控件的使用方法,供大家参考,具体内容如下 1.TextView 主要用于界面上显示一段文本信息 2.Button 用于和用户交互的一个按钮控件 //为Button点击事件注册一个监听器 public class Click extends Activity{ private Button button; @Override ptotected void onCreate(Bundle savedInstanceState) { super.onCreat

随机推荐