gpt4 book ai didi

java - 永远不会调用 fragment 中的 onClick 方法

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:41:56 25 4
gpt4 key购买 nike

我试图在我的 fragment 中设置一个 onClickListener。

public class HomeFragment extends Fragment implements View.OnClickListener {

Button btn_eventList;
public HomeFragment() {
// Required empty public constructor
}


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_home, container, false);

btn_eventList = (Button) view.findViewById(R.id.buttonEventList);
btn_eventList.setOnClickListener(this);

return view;
}

@Override
public void onClick(View v) {
btn_eventList.setText("TEST");
Toast.makeText(getActivity(), "TEST" , Toast.LENGTH_SHORT).show();
}

}

这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/nvd"
android:layout_height="match_parent"
android:layout_width="match_parent">



<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:fontFamily="sans-serif"
android:gravity="center"
android:text="test"
android:textAppearance="@style/TextAppearance.AppCompat.Display1"
/>

<TextView
android:id="@+id/textView4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/textView2"
android:layout_centerHorizontal="true"
android:layout_marginTop="1dp"
android:gravity="center"
android:text="test"
/>
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginTop="45dp"
android:orientation="horizontal">

<Button
android:id="@+id/buttonEventList"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button" />

<Button
android:id="@+id/button9"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button" />

<Button
android:id="@+id/button7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button" />
</LinearLayout>

<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content">

</android.support.v7.widget.RecyclerView>

</LinearLayout>

</RelativeLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/lst_nav_drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutManager="android.support.v7.widget.LinearLayoutManager"
>

</android.support.v7.widget.RecyclerView>
</android.support.v4.widget.DrawerLayout>

有谁知道为什么当我按下按钮时 onClick 方法从未被调用?我错过了什么吗?

最佳答案

编辑

由于 Sevin 让我注意到我不是在给你一个解决方案,而是一个实现你目标的替代方法,所以我正在编辑它。

首先:您的代码必须有效

您发布的代码是正确的

现在,做一些检查:

  • 检查在 Debug模式下按钮是否不为空(应该抛出异常)
  • 检查是否在 Debug模式下您到达了 onClick,即使文本没有改变,即使 toast 没有显示。
  • 检查您是否正确显示 fragment 。 Here is the official documentation about how to create a fragment.
  • 检查 fragment 是否可点击以及上面是否有任何东西(简单地说,点击按钮后会显示经典的“点击”动画?)
  • 如果您使用的 ID 分配给了正确的按钮,请检查 xaml 代码。

最后做如下操作:

  • 清理你的项目
  • 重建你的项目
  • 检查您在 xaml 和 java 代码中是否有任何警报(在基本配置中,在线上有黄色标记)
  • 卸载应用程序并重新安装(几乎相同,但由于我们不了解您的项目,它仍然可以提供帮助)

在那之后,让我们知道

可能的解决方案:

您有一个位于按钮 之上的recycleview。您在 relativelayout 中通过 match parent 高度和宽度设置了此 View ,这意味着此 View 将覆盖按钮。

删除这个空的recycleview,代码将起作用

关于java - 永远不会调用 fragment 中的 onClick 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39792340/

25 4 0
文章推荐: java - 将 Arraylist 中的值转换为 byte[]