中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android:幀動畫

發布時間:2020-07-20 10:10:11 來源:網絡 閱讀:353 作者:王琦123456 欄目:移動開發

前置條件:

1.首先在res/drawable目錄下放入幾張圖片(注意圖片不能用阿拉伯數字命名這里以one,two,three,four,否則在R.java文件中會報錯)。

2.同樣在res/drawable目錄下建立animation1.xml文件,文件主要用來控制幀動畫的循環次數:

android:oneshot="false"

另外還有控制播放的圖片:

 <item android:drawable="@drawable/one" android:duration="150"></item>  
 <item android:drawable="@drawable/two" android:duration="150"></item>  
  <item android:drawable="@drawable/three" android:duration="150"></item>  
  <item android:drawable="@drawable/four" android:duration="150"></item> 

放在節點<animation-list>        </animation-list>的中間

3.main.xml中是對界面的布局,包括p_w_picpathview,和兩個button

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    tools:context=".MainActivity" >

    <ImageView
        android:id="@+id/p_w_picpathView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="46dp"
        android:src="@drawable/four" 
        android:contentDescription="幀動畫圖片"/>
<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/linearlayout1"
    android:orientation="horizontal"
    >
</LinearLayout>

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/p_w_picpathView1"
    android:layout_below="@+id/p_w_picpathView1"
    android:layout_marginTop="34dp"
    android:text="@string/Begin" />

<Button
    android:id="@+id/button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/button1"
    android:layout_alignBottom="@+id/button1"
    android:layout_alignParentRight="true"
    android:text="@string/End" />

</RelativeLayout>

4.接下來就是對mainactivity.java的編寫

package com.example.bujiandonghua;

import android.os.Bundle;
import android.app.Activity;
import android.graphics.drawable.AnimationDrawable;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.Animation;
import android.widget.Button;
import android.widget.ImageView;

public class MainActivity extends Activity {
 private AnimationDrawable animationDrawable;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  final ImageView p_w_picpathView=(ImageView)findViewById(R.id.p_w_picpathView1);
  Button button1=(Button)findViewById(R.id.button1);
  Button button2=(Button)findViewById(R.id.button2);
  button1.setOnClickListener(new OnClickListener() {

   @Override
   public void onClick(View arg0) {
    // TODO Auto-generated method stub

   //設置資源文件獲取的來源
    p_w_picpathView.setImageResource(R.drawable.animation1);
    //  // 獲取AnimationDrawable對象 
    animationDrawable=(AnimationDrawable)p_w_picpathView.getDrawable();
    animationDrawable.start();
   }
  });
  button2.setOnClickListener(new OnClickListener() {

   @Override
   public void onClick(View arg0) {
    // TODO Auto-generated method stub
    p_w_picpathView.setImageResource(R.drawable.animation1);
    animationDrawable=(AnimationDrawable)p_w_picpathView.getDrawable();
    animationDrawable.stop();
   }
  });
 }

 @Override
 public boolean onCreateOptionsMenu(Menu menu) {
  // Inflate the menu; this adds items to the action bar if it is present.
  getMenuInflater().inflate(R.menu.activity_main, menu);
  return true;
 }

}

 

 

 

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

瑞昌市| 濉溪县| 屏东市| 探索| 宜川县| 疏勒县| 平塘县| 赤壁市| 宣恩县| 大同县| 阳曲县| 白山市| 南京市| 漯河市| 紫阳县| 文安县| 富阳市| 浪卡子县| 儋州市| 偃师市| 临洮县| 遂川县| 武威市| 印江| 三门县| 河西区| 蛟河市| 子洲县| 徐汇区| 昆山市| 高安市| 鹿邑县| 晋州市| 随州市| 凤阳县| 敦化市| 松江区| 高陵县| 东港市| 慈利县| 河南省|