Home

Published

- 1 min read

show dialog fragment from adapter

img of show dialog fragment from adapter

The solution for this is noted below

show dialog fragment from adapter

Solution

   public class YourPagerAdapter extends PagerAdapter{

   private Context context;

   public YourPagerAdapter(Context c) {
          this.context = c;
   }

   @Override
      public void onClick(View v) {
            FragmentActivity activity = (FragmentActivity)(context);
            FragmentManager fm = activity.getSupportFragmentManager();
            YourDialogFragment alertDialog = new YourDialogFragment();
            alertDialog.show(fm, "fragment_alert");
      }
}

Try other methods by searching on the site. That is if this doesn’t work