Как я могу настроить onClickListener для просмотра внутри раздутого макета ViewStub? - PullRequest
0 голосов
/ 16 июня 2020

У меня есть макет

<merge xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/llRemindMe"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
    android:id="@+id/tvActionRemindMe"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_marginTop="16dp"
    android:text="@string/event_action_remind_me"
    android:textAllCaps="true"
    android:textColor="@color/colorAccent" />

<View
    android:id="@+id/vDividerRemindMe"
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:layout_marginTop="16dp"
    android:background="@color/light_blue" />
</merge>

И есть ViewStub, который раздувает этот макет с помощью привязки данных для видимости:

<ViewStub
        android:id="@+id/sectionRemindMe"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout="@layout/layout_remind_me"
        android:visibility="@{viewModel.remindMeSectionVisibility}"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/vDividerEvent"
        tools:visibility="visible" />

Как я могу установить onClickListener в представление tvActionRemindMe, находится внутри раздутого представления с использованием привязки данных? Я пытался найти его с помощью kotlin синтетики, например

sectionRemindMe.??? (maybe binding?)

, но не могу понять, как мне найти свое представление внутри ViewStub? Должен ли я использовать здесь привязку или что-то еще?

...