你好,我正在嘗試創建一個像這樣的動畫,創造像泡沫一樣的心,但不是100%這樣的。這可以在一些靜態的活動。Android動畫幫助
但我在沒有地方。文檔缺乏示例和API中的示例是不可接受的。製作這樣的動畫應該不那麼難。
我粘貼我的代碼請幫助我。
類文件
import android.app.Activity;
import android.graphics.drawable.AnimationDrawable;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.RelativeLayout;
public class AnimationTest extends Activity {
AnimationDrawable animation;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button btnStart = (Button) findViewById(R.id.btnStart);
final ImageView imgView = (ImageView) findViewById(R.id.img);
btnStart.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
startAnimation();
}
});
imgView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
}
});
}
class Starter implements Runnable {
public void run() {
animation.start();
}
}
private void startAnimation() {
animation = new AnimationDrawable();
animation.addFrame(getResources().getDrawable(R.drawable.one), 100);
animation.addFrame(getResources().getDrawable(R.drawable.two), 100);
animation.addFrame(getResources().getDrawable(R.drawable.three), 100);
animation.addFrame(getResources().getDrawable(R.drawable.four), 100);
animation.addFrame(getResources().getDrawable(R.drawable.five), 100);
animation.addFrame(getResources().getDrawable(R.drawable.six), 100);
animation.addFrame(getResources().getDrawable(R.drawable.seven), 100);
animation.addFrame(getResources().getDrawable(R.drawable.eight), 100);
animation.setOneShot(false);
ImageView imageView = (ImageView) findViewById(R.id.img);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(80, 90);
params.alignWithParent = true;
params.addRule(RelativeLayout.CENTER_IN_PARENT);
imageView.setLayoutParams(params);
imageView.setImageDrawable(animation);
imageView.post(new Starter());
}
}
XML文件
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="Frame by Frame Animation Example"
android:gravity="center" />
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_gravity="center_horizontal">
<ImageView android:id="@+id/img" android:layout_width="80px"
android:layout_height="90px" android:layout_centerInParent="true" />
<Button android:id="@+id/btnStart" android:text="Start Animation"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentRight="true" />
</RelativeLayout>
</LinearLayout>
編輯 我想要什麼來完成 第一步:魚來自左側 SETP2:魚來自右側
第三步:一個心臟出現,生長在這兩個魚 步驟4的正中央更大:那麼小的心飛走,消失
你想讓他們動畫?你想讓每顆心分別進行動畫製作嗎?或者你想讓整個圖像做些什麼? – FoamyGuy
讓我編輯這個我想要的 –