WEB开发网
开发学院手机开发Android 开发 Android界面组件的抖动效果实现 阅读

Android界面组件的抖动效果实现

 2012-12-23 16:07:13 来源:WEB开发网   
核心提示: Android实现界面组件的抖动效果采用的Animation动画, 在系统提供的API Demos:目录为 \android-sdk\samples\android-8\ApiDemos 中已经实现了简单的抖动效果 :具体使用如下:第一步:准备两个动画效果的XML文件,加入到 res/anim/目录下:Shake.

 Android实现界面组件的抖动效果采用的Animation动画, 在系统提供的API Demos:

目录为 \android-sdk\samples\android-8\ApiDemos 中已经实现了简单的抖动效果 :


具体使用如下:

第一步:准备两个动画效果的XML文件,加入到 res/anim/目录下:

Shake.xml文件:

<translate 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文件:

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

第二步: //代码使用动画效果:

Animation shake = AnimationUtils.loadAnimation(this, R.anim.shake);//加载动画资源文件
findViewById(R.id.xxxx).startAnimation(shake); //给组件播放动画效果

Tags:Android 界面 组件

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接