回答
爲Activity
翻轉動畫上不存在Android..sorry!
下面是從SDK演示代碼:
/**
* <p>Example of using a custom animation when transitioning between activities.</p>
*/
public class Animation extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_animation);
// Watch for button clicks.
Button button = (Button)findViewById(R.id.fade_animation);
button.setOnClickListener(mFadeListener);
button = (Button)findViewById(R.id.zoom_animation);
button.setOnClickListener(mZoomListener);
}
private OnClickListener mFadeListener = new OnClickListener() {
public void onClick(View v) {
// Request the next activity transition (here starting a new one).
startActivity(new Intent(Animation.this, Controls1.class));
// Supply a custom animation. This one will just fade the new
// activity on top. Note that we need to also supply an animation
// (here just doing nothing for the same amount of time) for the
// old activity to prevent it from going away too soon.
overridePendingTransition(R.anim.fade, R.anim.hold);
}
};
private OnClickListener mZoomListener = new OnClickListener() {
public void onClick(View v) {
// Request the next activity transition (here starting a new one).
startActivity(new Intent(Animation.this, Controls1.class));
// This is a more complicated animation, involving transformations
// on both this (exit) and the new (enter) activity. Note how for
// the duration of the animation we force the exiting activity
// to be Z-ordered on top (even though it really isn't) to achieve
// the effect we want.
overridePendingTransition(R.anim.zoom_enter, R.anim.zoom_exit);
}
};
}
所有代碼都是在apidemo /應用/,:)
好的,讓我查看您發佈的教程。謝謝 – 2012-07-27 12:58:18
使用您發佈的代碼後的動畫是「屏幕閃爍了大約0.25秒,並顯示被叫活動」,它絕不像旋轉或翻轉:( – 2012-07-27 13:05:59
我改變了從「300」到「 3000「只是爲了清楚地檢查實際的動畫,只要我點擊按鈕從ActivityA到ActivityB,屏幕變黑,然後慢慢地出現ActivityA,然後出現ActivityB – 2012-07-27 13:10:48
- 1. 在活動之間轉換時是否可以使用翻轉動畫?
- 2. Android活動與活動組之間的翻轉動畫
- 3. 在活動之間切換
- 4. 在活動之間切換
- 5. 活動與旋轉動畫之間切換
- 6. 如何在活動之間切換?
- 7. Iphone:頁面翻轉動畫
- 8. jQuery頁面翻轉動畫
- 9. 頁面捲曲動畫在視圖翻轉視圖之間翻轉
- 10. 動畫:切換時轉換
- 11. 如何在不同頁面之間創建動畫頁面轉換?
- 12. 用於在活動之間切換的動畫
- 13. 兩個活動之間的翻轉動畫
- 14. 如何切換點擊類來動畫AJAX頁面轉換
- 15. android動畫活動切換
- 16. 如何在活動之間切換時顯示進度條
- 17. 在Unity中動畫之間切換
- 18. 不能在活動之間切換
- 19. 在兩個活動之間切換
- 20. 在android中的活動之間切換?
- 21. 在Android中的活動之間切換
- 22. Page Curl。在活動之間切換
- 23. 在場景和活動之間切換
- 24. 兩個UIWebView之間的翻轉動畫
- 25. 如何加快頁面轉換動畫?
- 26. 頁面動畫轉換
- 27. 頁面轉換動畫
- 28. WPF動畫創意翻轉頁面
- 29. 核心動畫 - 頁面翻轉
- 30. 在Android中翻頁/翻轉動畫?
您能否提供apidemo/app /的鏈接 – 2012-07-27 13:42:38