gpt4 book ai didi

java - 对调用 Activity 的影响。 ( Intent )

转载 作者:行者123 更新时间:2023-11-29 22:07:20 24 4
gpt4 key购买 nike

我在像 facebook 这样的应用程序中看到过, Intent 调用从下向上、从左到右或从上到下的屏幕效果 ...

我搜索了但找不到,因为有人知道如何做到这一点吗?

最佳答案

这是一个例子:

Intent intent = new Intent(this, ItemPage.class);
startActivity(intent);
overridePendingTransition(R.anim.slide_in_left, R.anim.slide_out_left);

向左滑动 xml:

<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXDelta="100%p" android:toXDelta="0"
android:duration="@android:integer/config_shortAnimTime"/>

向左滑出xml:

<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXDelta="0" android:toXDelta="-100%p"
android:duration="@android:integer/config_shortAnimTime" />

关于java - 对调用 Activity 的影响。 ( Intent ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10502400/

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