您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
android动画的简单使用
这里通过不断切换图片,达成动画效果。
在布局中,定义一个ImageButton控件
并设置好其位置。
//布局文件
//很简单,就一个控件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".AnimActivity" > <ImageView android:id="@+id/anim_id" android:layout_width="70dp" android:layout_height="50dp" android:layout_centerHorizontal="true" android:layout_centerVertical="true" /> </RelativeLayout>
//res/anim/anim_test.xml动画
//里面涉及到间隔、图片切换。
//另外在第一张与最后一张,我用了透明的图片作为填充。
//以解决动画播放完毕后,最后一张图片没有消失的现象。
<?xml version="1.0" encoding="utf-8"?> <animation-list android:oneshot="true" xmlns:android="http://schemas.android.com/apk/res/android"> <item android:duration="50" android:drawable="@drawable/null_06" /> <item android:duration="1000" android:drawable="@drawable/bs_preview_item_num10" /> <item android:duration="1000" android:drawable="@drawable/bs_preview_item_num9" /> <item android:duration="1000" android:drawable="@drawable/bs_preview_item_num8" /> <item android:duration="1000" android:drawable="@drawable/bs_preview_item_num7" /> <item android:duration="1000" android:drawable="@drawable/bs_preview_item_num6" /> <item android:duration="1000" android:drawable="@drawable/bs_preview_item_num5" /> <item android:duration="1000" android:drawable="@drawable/bs_preview_item_num4" /> <item android:duration="1000" android:drawable="@drawable/bs_preview_item_num3" /> <item android:duration="1000" android:drawable="@drawable/bs_preview_item_num2" /> <item android:duration="1000" android:drawable="@drawable/bs_preview_item_num1" /> <item android:duration="1000" android:drawable="@drawable/null_06" /> </animation-list>
//函数中启动动画
//直接调用该方法即可
//进入选择界面后播放
private void playReadyAnim(){ //播放动画 ImageView animImg = (ImageView)findViewById(R.id.anim_id); animImg.setBackgroundResource(R.anim.anim_test); Object ob = animImg.getBackground(); anim = (AnimationDrawable) ob; anim.stop(); anim.start(); }
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。