我有两个活动A和B. A包含一个RecyclerView,并点击该RecyclerView的项目启动活动B,其中还包含RecyclerView。 这是我对整个应用程序的输入转换:
Leakoff_md = FT["Depth"].tolist()
Leakoff_val = FT["Leakoff"].tolist()
这是退出转换
Leakoff_md = FT["Depth"].values.tolist()
Leakoff_val = FT["Leakoff"].values.tolist()
print (Leakoff_md)
[5500, 5501, 5502]
<transitionSet xmlns:android="http://schemas.android.com/apk/res/android"
android:transitionOrdering="sequential">
<slide android:slideEdge="end">
<targets>
<target android:excludeId="@android:id/statusBarBackground"/>
<target android:excludeId="@android:id/navigationBarBackground"/>
</targets>
</slide>
由于设置了recyclerview并从firebase获取数据以填充它,活动B的开始会冻结几毫秒。 有没有办法立即开始过渡?我的意思是,有没有办法阻止Recyclerview延迟过渡?