gpt4 book ai didi

android - 为新 Activity 添加动画

转载 作者:行者123 更新时间:2023-11-29 21:10:14 24 4
gpt4 key购买 nike

我正在尝试在 activitis 之间添加一个过渡,但没有用。

我一直在寻找并修复它,但没有一个答案对我有用。

喜欢:

overridePendingTransition not working

Can I change the Android startActivity() transition animation?

Make new activity appear behind old one during transition

我发布我的代码:

在带有一个按钮的 MainActivity 中,我设置了 onclick 监听器。

    cobrar.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
Intent formasdepago = new Intent(MainActivity.this, Formas_De_Pago.class);
startActivity(formasdepago);
overridePendingTransition(R.anim.push_in,R.anim.push_out);
}
});

插入.xml

<?xml version="1.0" encoding="utf-8"?><br/>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator"><br/>
<translate
android:fromYDelta="100%p"
android:toYDelta="0"
android:duration="500"/>
</set>

Push_out.xml

<?xml version="1.0" encoding="utf-8"?><br/>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator"><br/>
<translate
android:fromYDelta="0"
android:toYDelta="-100%p"
android:duration="500"/>
</set>

最佳答案

问题出在我的手机上,我禁用了这个选项:

设置->开发者选项->过渡动画比例

关于android - 为新 Activity 添加动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23134902/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com