Android XML Просмотр прохода привязки данных по идентификатору - PullRequest
0 голосов
/ 05 августа 2020

Чтобы показать BottomSheetBehavior, мне нужно передать его представление, как показано ниже.

Класс ViewUtil.kt

 fun showBottomSheet(view: View) {
        val bottomSheetBehavior = BottomSheetBehavior.from(view)

        if (bottomSheetBehavior.state == BottomSheetBehavior.STATE_COLLAPSED) {
            bottomSheetBehavior.state = BottomSheetBehavior.STATE_EXPANDED
        } else {
            bottomSheetBehavior.state = BottomSheetBehavior.STATE_COLLAPSED
        }
    }

Fragment.kt

termsTitle.setOnClickListener {
    showBottomSheet(tosLayoutBottomSheet)
 }

bottom_sheet_tos. xml

    <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/tosLayoutBottomSheet"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:behavior_hideable="true"
    app:behavior_peekHeight="0dp"
    app:layout_behavior="@string/bottom_sheet_behavior">

     <!-- some stuff about terms of service -->
</androidx.constraintlayout.widget.ConstraintLayout>

фрагмент. xml

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:ignore="MissingDefaultResource">

<data>

    <import
        alias="v"
        type="android.view.View" />

    <variable
        name="fragmentViewModel"
        type=".FragmentViewModel"/>
</data>

<androidx.constraintlayout.widget.ConstraintLayout
    android:id="@+id/main_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background_main_page">

        <TextView
        android:id="@+id/terms_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginStart="24dp"
        android:layout_marginBottom="8dp"
        android:paddingLeft="30dp"
        android:paddingRight="30dp"
        android:text="@string/terms_of_service"
        android:textColor="@color/colorGrey"
        android:textSize="20sp"
        android:textStyle="bold"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent" />
    </androidx.constraintlayout.widget.ConstraintLayout>
</layout>

Итак, вместо использования onclicklistener из фрагмента, я бы хотел сделать это из моего xml и модели просмотра, например:

фрагмент. xml

<TextView
        android:id="@+id/terms_title"

        android:onClick="@{(v)-> fragmentViewModel.showBottomSheetFrag(tosLayoutBottomSheet)}"

        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginStart="24dp"
        android:layout_marginBottom="8dp"
        android:paddingLeft="30dp"
        android:paddingRight="30dp"
        android:text="@string/terms_of_service"
        android:textColor="@color/colorGrey"
        android:textSize="20sp"
        android:textStyle="bold"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent" />

I знайте, что вышеуказанный подход не работает, потому что идентификатор tosLayoutBottomSheet находится в другом макете. Как передать идентификатор из другого макета?

...