我正在使用片段事务在按下按钮时在组件之间进行切换。为了使整体体验更好,我添加了自定义动画,以将旧片段的动画设置为左侧,而将新片段的动画设置为右侧。
启动此事务的代码如下:
supportFragmentManager.beginTransaction()
.setCustomAnimations(R.anim.enter_from_right, R.anim.exit_to_left)
.replace(R.id.fragment_container, contentModel.contentFragment, CONTENT_FRAGMENT_TAG)
.commit()
我使用的动画看起来像这样,用于enter_from_right.xml:
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:startOffset="450">
<translate
android:fromXDelta="100%"
android:toXDelta="0"
android:interpolator="@android:anim/decelerate_interpolator"
android:duration="500"/>
</set>
和exit_to_left.xml:
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:fromXDelta="0"
android:toXDelta="-100%"
android:interpolator="@android:anim/decelerate_interpolator"
android:duration="500"/>
</set>
EDIT 我要替换的片段如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop=“20”
android:layout_margin=“10”
android:orientation="vertical">
<TextView
android:lineSpacingExtra=“7”
android:id="@+id/questionTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom=“10”
tools:text=“Question title text“/>
<LinearLayout
android:id="@+id/textInputContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<!-- Dynamically filled with TextInputLayout and TextInputEditText elements containing answers -->
</LinearLayout>
<FrameLayout
android:layout_marginTop=“10”
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<Button
android:id="@+id/nextButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:text=“Next question” />
</FrameLayout>
</LinearLayout>
但是,如果我在片段事务忙于动画时(例如在按钮单击和+-1秒之间)暂停应用程序(按主屏幕按钮),然后返回视图,则会发生以下奇怪的行为:< / p>
我要替换的片段(因此应该在动画之后删除的片段)在屏幕上仍然可见,但是我无法与其交互,并且它不会在Android Studio布局检查器中的任何位置显示。 / p>
它也不会落后于常规内容,而是先于常规内容(但是点击会通过它)。
似乎唯一可行的方法,但我不想使用它,是将addToBackStack添加到事务中,因为我没有使用事务回栈,所以我需要添加丑陋的代码来清理事务堆栈。
我想知道是否还有其他人遇到过这个问题,并找到了一个好的解决方案。
答案 0 :(得分:0)
尝试致电executePendingTransactions()
之后呼叫commit()
。
supportFragmentManager.beginTransaction()
.setCustomAnimations(R.anim.enter_from_right, R.anim.exit_to_left)
.replace(R.id.fragment_container, contentModel.contentFragment, CONTENT_FRAGMENT_TAG)
.commit()
.executePendingTransactions()