Toast not working from fragment of Tabbed Activity

116 Views Asked by At

I tried many solutions from stackoverflow but still not able to find a way through. I am trying to toast from a fragment of a Tabbed Activity but it looks like the OnClickListener is not working. Please help me out. Here is my code:

Button b;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    View ph=inflater.inflate(R.layout.fragment_history, container, false);
    b=(Button)ph.findViewById(R.id.hb);
    b.setOnClickListener(new View.OnClickListener() {
        @Override

        public void onClick(View v) {
            Log.d("test", "test");
            Toast.makeText(getActivity().getApplicationContext(), "HISTORY TAB", Toast.LENGTH_LONG).show();
        }
    });
    return ph;
}

The fragment_history layout code is:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
         xmlns:tools="http://schemas.android.com/tools"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         tools:context="molecule.tabfinal.History">

<!-- TODO: Update blank fragment layout -->
<TextView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="TAPPAL HISTORY TAB"/>
<Button
    android:id="@+id/hb"
    android:layout_width="75dp"
    android:layout_height="50dp"
    android:text="HISTORY"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="139dp"/>
</RelativeLayout>
0

There are 0 best solutions below