片段中的onClick方法永远不会被调用

时间:2016-09-30 13:09:32

标签: java android android-studio

我试图在我的片段中设置一个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方法永远不会被调用?我错过了什么吗?

3 个答案:

答案 0 :(得分:4)

修改

由于Sevin让我注意到我没有给你一个解决方案,而是另一种达到目标的方法,我正在编辑这个。

首先:您的代码必须正常工作

您发布的代码是正确的

现在,做一些检查:

  • 检查在调试模式下按钮是否为空(应该抛出异常)
  • 检查在调试模式下是否到达onClick,即使文本没有改变,即使吐司没有显示。
  • 检查您是否正确显示片段。 Here is the official documentation about how to create a fragment.
  • 检查片段是否可点击以及是否有任何内容(简单地说,点击按钮会显示经典的“点击”动画?)
  • 检查xaml代码中是否将您使用的ID分配给正确的按钮。

最后做一些以下操作:

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

之后,请告诉我们

可能的解决方案:

recycleview位于button之上。您在match parent内设置了relativelayout高度和宽度的视图,这意味着此视图将覆盖按钮。

删除此空recycleview,代码将正常工作

答案 1 :(得分:1)

修改

在发布您的布局后,我可以完全确定您的REcyclerView占用了布局的所有空间,从而从后面的所有触摸输入中获取。

<强>解决方案:

您可以删除回收者视图或重新排列它并将其添加到LastLayout并使用layout_below并将其放在LinearLayout

下面

答案 2 :(得分:-1)

问题在于您没有正确实施此方法。 onClick()方法不知道,具体点击了什么视图。将onClick()方法更改为以下格式:

@Override
public void onClick(View v) {
    switch (v.getId()) {
        case R.id.your_button_id: 
            btn_eventList.setText("TEST");
            Toast.makeText(getActivity(), "TEST" , Toast.LENGTH_SHORT).show();
            break;
    }
}