在片段中显示吐司

时间:2018-03-15 15:29:17

标签: android fragment onclicklistener android-toast

我想在按钮click上显示吐司,该按钮位于片段中。我已经尝试了获取toast的上下文的方法,但它没有显示在按钮点击上。

这是我的代码

public class Bottom_Sheet_Fragment extends Fragment {

Button addComment;

public Bottom_Sheet_Fragment() {
    // Required empty public constructor
}


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {


    View view=inflater.inflate(R.layout.fragment_bottom__sheet, container, false);

    addComment=(Button) container.findViewById(R.id.addCommentBtn);
    addComment.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {

            Toast.makeText(getActivity(), "Added", Toast.LENGTH_SHORT).show();
        }
    });

    return view;
  }
}

这是片段布局

<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/bottom_sheet1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/holo_blue_light"
android:fillViewport="true"
android:orientation="vertical"
app:behavior_hideable="true"
app:behavior_peekHeight="0dp"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/holo_blue_light"
    android:orientation="vertical">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/commentList"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

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

        <EditText
            android:id="@+id/etComment"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:hint="Write comment" />

        <Button
            android:id="@+id/addCommentBtn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:text="Add" />
    </RelativeLayout>
</LinearLayout>

这个布局文件包含在另一个活动中,在include statement.dont中知道问题出在哪里。这个片段就像一个底片。

2 个答案:

答案 0 :(得分:0)

试试这个:addComment = view.findViewById(R.id.addCommentBtn); 因为你必须从布局获得按钮才会膨胀。

答案 1 :(得分:-1)

您需要使用view.findViewById

试一下

addComment=(Button) view.findViewById(R.id.addCommentBtn);
addComment.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View view) {

        Toast.makeText(getActivity(), "Added", Toast.LENGTH_SHORT).show();
    }
});