gpt4 book ai didi

java - TextView onclick 方法使应用程序崩溃

转载 作者:太空狗 更新时间:2023-10-29 16:00:42 25 4
gpt4 key购买 nike

我有一个带有 OnClick 方法的 textView 来导航另一个 Activity 。但是,如果我按下该文本,它不会导航。但是如果我使用 Button 而不是 TextView,它会完美地工作。无法在 TextView 中使用 OnClick 方法?

forgotpasstxt= (TextView) findViewById(R.id.txtForgotpPass);

/** Textview on click even.
*
*/
forgotpasstxt.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent myIntent = new Intent(view.getContext(), ChangePassword.class);
startActivityForResult(myIntent, 0);}
});

XML.登录

 <TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Forgot Password?"
android:id="@+id/txtForgotpPass"
android:clickable="true"
android:onClick="perform_action"
android:textColor="#ff3b5998"
android:layout_below="@+id/btnReset"
android:layout_centerHorizontal="true" />

请帮忙,我不明白为什么应用程序会在用户单击忘记密码链接后崩溃。

最佳答案

删除这一行:

android:onClick="perform_action"

您正在以编程方式设置监听器。

关于java - TextView onclick 方法使应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34293294/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com