3
我試圖從右側的操作欄打開一個對話框。我想將動畫從右上角加載到左下角。這是我所擁有的,但是它從左上角加載到右下角。我試圖切換它無濟於事。謝謝你的幫助。使用xml從右上角到左下角的Android動畫
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<scale android:fromYScale="0" android:toYScale="1.0"
android:fromXScale="0" android:toXScale="1.0"
android:duration="500"/>
</set>
非常感謝您鏈接的資源。這對我幫助很大。 – Grux