編輯:關於Android編程
現在使ImageView中的圖片可以動起來
1.在drawable-mdpi文件夾下加入圖片,並加入一個xml文件,文件如下
[html]
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:drawable="@drawable/a" android:duration="500"/>
<item android:drawable="@drawable/b" android:duration="500"/>
<item android:drawable="@drawable/c" android:duration="500"/>
<item android:drawable="@drawable/d" android:duration="500"/>
</animation-list>
<?xml version="1.0" encoding="utf-8"?> www.2cto.com
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:drawable="@drawable/a" android:duration="500"/>
<item android:drawable="@drawable/b" android:duration="500"/>
<item android:drawable="@drawable/c" android:duration="500"/>
<item android:drawable="@drawable/d" android:duration="500"/>
</animation-list>
2.代碼如下
[java]
iv.setBackgroundResource(R.drawable.anim);
AnimationDrawable an=(AnimationDrawable)iv.getBackground();
an.start();
iv.setBackgroundResource(R.drawable.anim);
AnimationDrawable an=(AnimationDrawable)iv.getBackground();
an.start();
其實可以用一個線程加Handler來實現動畫的,在線程中隔一定時間發送消息,更改ImageView的圖片。
分享到:
package com.icq.spinnercity; import java.util.ArrayList; import java.util.List; imp
前言 SQLite是一種輕量級的小型數據庫,雖然比較小,但是功能相對比較完善,一些常見的數據庫基本功能也具有,在現在的嵌入式系統中使用該數據庫的比較多,因為它占用系統
之前在eclipse上顯示百度地圖的時候並沒有發生什麼不愉快的事,但是AS上簡直是RI了DOG。我簡直不能忍Baidu地圖API文檔,丑陋至極。1、新建一個項目,名為Ba
在使用android-async-http的時候我的apl 更新到了23,我的build version也是23的時候出現了,org.apache.http.Heade