我編寫了一個代碼,該代碼使用來自給定靜態點(pivotX,pivotY)的動畫開始一個活動,但我想在活動開始之前更改pivotX和pivotY。我想在我點擊地圖上的某個點時開始動畫。如何使用自定義動畫開始活動?
XML:
<scale
android:duration="1000"
android:fillAfter="false"
android:fillBefore="false"
android:fillEnabled="true"
android:fromXScale="0.0"
android:fromYScale="0.0"
android:pivotX="10%p"
android:pivotY="50%p"
android:toXScale="1.0"
android:toYScale="1.0" />
Activtity:
Intent intent = new Intent(getApplicationContext(),
PlayerActivity.class);
startActivity(intent);
overridePendingTransition(R.anim.push_down_in,
R.anim.push_down_out);
嘿你得到了這個問題的答案 –