Textview中的Onclick崩溃了

时间:2018-08-10 10:48:38

标签: android

我有一个TextView,其中包含xml中的onclick。onclick有时会起作用,有时应用程序会崩溃。我将xml中的TextView重命名为android.support.v7.widget.AppCompatTextView,但是没有解决问题。我发现了类似的问题,但没有解决我的问题。

代码

 public void customerDetails(View view){
    Intent intent=new Intent(Customers.this,CustomerDetails.class);
    intent.putExtra(Common.CUSTOMERID,view.getTag().toString());
    startActivity(intent);
}

我的XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="3dp"
        android:layout_marginRight="3dp"
        app:cardCornerRadius="4dp"
        app:cardElevation="1dp"
        app:cardMaxElevation="0dp"
        app:cardUseCompatPadding="true"
        android:animateLayoutChanges="true">
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="10dp">

        <TextView
            android:id="@+id/customer_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_toEndOf="@+id/call_button"
            android:layout_toLeftOf="@+id/amount"
            android:layout_toRightOf="@+id/call_button"
            android:layout_toStartOf="@+id/amount"
            android:onClick="customerDetails"
            android:text="Customer Name"
            android:textColor="@color/colorAccent"
            android:textSize="14sp"
            android:textStyle="bold" />
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/customer_name"
            android:text="ContactPersonName"
            android:textColor="@color/primary_text"
            android:textSize="12sp"
            android:id="@+id/contact_person_name"
            android:layout_toLeftOf="@+id/amount"
            android:layout_toStartOf="@+id/amount"
            android:layout_toRightOf="@+id/call_button"
            android:layout_toEndOf="@+id/call_button"/>

    </RelativeLayout>
    </android.support.v7.widget.CardView>
</LinearLayout>

错误是

  

java.lang.IllegalStateException:在视图类android.support.v7.widget.AppCompatTextView定义的ID为“ customer_name”的android:onClick属性的父级或祖先上下文中找不到方法customerDetails(View)

3 个答案:

答案 0 :(得分:0)

您必须在xml中使用自己的类,因为标准TextView类不包含您的自定义方法

答案 1 :(得分:0)

尝试将以下行添加到xml的根标记中:

tools:context="<yourpackaggename.activityname>"

答案 2 :(得分:0)

您应该在“活动onCreate”方法中添加您的侦听器。通过使用lambda,对于每个侦听器,代码的增长不会超过一行:

findViewById(R.id.textView).setOnClickListener(v -> customerDetails(v));

您现在可以将customerDetails方法的可见性更改为private

这是一种更好的做法,如果您需要更复杂的内容,则可以更好地控制听众。