Я пытаюсь реализовать общий переход элемента между фрагментами, но он не работает. Я использую androidx.fragment.app.Fragment в моем фрагменте.
Фрагмент А:
xml:
<TextView
android:id="@+id/btnGetStarted"
style="@style/buttonTextStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@drawable/bg_transparent_curved"
android:drawablePadding="@dimen/standard_16"
android:gravity="center"
android:onClick="@{(v)->iView.onClick(v)}"
android:text="@string/get_started"
android:textAllCaps="true"
android:transitionName="@string/transition_splash"
app:layout_constraintBottom_toTopOf="@+id/guide_H95"
app:layout_constraintEnd_toEndOf="@id/guide_V80"
app:layout_constraintStart_toStartOf="@id/guide_V20"
app:layout_constraintTop_toTopOf="@+id/guide_H70"
app:layout_constraintVertical_bias="1" />
Код:
fun replaceFragment(layoutId: Int, fragment: Fragment, view: View? = null) {
val fragmentTransaction = supportFragmentManager.beginTransaction()
if (view != null)
fragmentTransaction.addSharedElement(view, ViewCompat.getTransitionName(view)!!).setReorderingAllowed(true)
fragmentTransaction.replace(layoutId, fragment).commit()
}
Фрагмент B:
<TextView
android:id="@+id/btnExplore"
style="@style/buttonTextStyle"
android:transitionName="@string/transition_splash"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:background="@drawable/bg_transparent_curved"
android:drawablePadding="@dimen/standard_16"
android:gravity="center"
android:onClick="@{(v)->iView.onClick(v)}"
android:text="@string/explore_ray"
android:textSize="@dimen/rounded_button_text_size"
app:layout_constraintBottom_toTopOf="@+id/txtOr"
app:layout_constraintEnd_toEndOf="@id/guide_V80"
app:layout_constraintStart_toStartOf="@id/guide_V20"
app:layout_constraintTop_toTopOf="@+id/guide_H70" />