在点击侦听器中包含TAG

时间:2019-02-12 19:39:37

标签: android button include click fragment

我有一个片段,其中两个包含外部布局:

        <include
        android:id="@+id/buttonSelectDate"
        layout="@layout/content_dateinstall_datebutton"
        android:layout_width="141dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_marginStart="38dp"
        android:layout_marginTop="35.9dp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/txtInsertPhoneNumber"/>

    <include
        android:id="@+id/buttonSelectPeriod"
        layout="@layout/content_dateinstall_periodbutton"
        android:layout_width="141dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_marginEnd="38dp"
        android:layout_marginTop="35.9dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/txtInsertPhoneNumber"/>

我想设置OnClick方法,因为我将使用该布局作为按钮。

当我将View设置为onclicklistener时,应用程序在运行时崩溃。我一直在尝试将ButterKnife的onClick与@BindView和@OnClick绑定,并以常见方式创建对象并设置onClickListener。

有人知道我该怎么做吗?

这是我的buttonLayout:

<?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">
<data>
    <variable name="orderViewModel" type="com.oi.pap.viewmodels.OrderViewModel"/>
</data>
<androidx.constraintlayout.widget.ConstraintLayout
    android:id="@+id/linearLayout2"
    android:layout_width="141dp"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:background="@drawable/custom_border_button">

    <TextView
        style="@style/TextAppearance.simplonRegular"
        android:id="@+id/txtSelectPeriod"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/all_period"
        android:layout_marginLeft="8dp"
        android:layout_marginTop="11dp"
        android:textSize="12sp"
        android:textColor="@color/lipstick"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="parent"/>

    <TextView
        style="@style/TextAppearance.simplonHeadline"
        android:id="@+id/txtSelectPeriodValue"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@={orderViewModel.periodInstallValue}"
        android:layout_marginLeft="8dp"
        android:layout_marginTop="11dp"
        android:layout_marginBottom="10dp"
        android:textSize="14sp"
        android:textColor="@color/black"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/txtSelectPeriod"
        app:layout_constraintBottom_toBottomOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>

2 个答案:

答案 0 :(得分:0)

从我看到的内容来看,您尝试从主布局访问包含布局,并且您使用的是MVVM方法,当您尝试访问内部包含布局时的主要问题是无法获取已声明的数据,因此您还必须在主布局中声明它,然后将其也传递到包含布局,例如: 在我的LoginLayout.xml中:

<data>
    <variable
        name="activityLogin"
        type="...LoginViewModel"/>
</data>

在这里,我想从活动Login中获取数据访问权限,然后在include中:

<include
    ....
    bind:contentLogin="@{activityLogin}"
    ..../>

在内容登录中:

<data>
        <variable
            name="contentLogin"
            type="...LoginViewModel"/>
    </data>

然后,就是从点击中获取数据

答案 1 :(得分:0)

我找到了。

private FragmentDateinstallHomeBinding dataBinding;
dataBinding = DataBindingUtil.inflate(inflater, R.layout.fragment_dateinstall_home, 
container, false);
View view = dataBinding.getRoot();
//here
dataBinding.buttonSelectDate.dateInstallButtonLayout.setOnClickListener(tst);