Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android圖片閃爍或幀動畫

android圖片閃爍或幀動畫

編輯:關於Android編程

remote_recording_transition.xml 文件 <?xml version="1.0" encoding="utf-8"?> <animation-list     xmlns:android="http://schemas.android.com/apk/res/android"     android:oneshot="false">      <item android:drawable="@drawable/remote_recording" android:duration="800"></item>       <item android:drawable="@drawable/remote_recording_run" android:duration="800"></item>  </animation-list>    android:oneshot="false" 是否循環播放,flase是循環播放 true只播一次 android:duration="800" 間隔時間 java代碼 private AnimationDrawable recordingTransition; recording=(ImageView)findViewById(R.id.recording); recording.setBackgroundResource(R.drawable.remote_recording_transition); recordingTransition = (AnimationDrawable) recording.getBackground(); recordingTransition.start();  
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved