Can I move snack bar of background activity to a current foreground dialog activity?

301 Views Asked by At
  1. I have an activity running on my phone and on its button click I open a new activity but in dialog form (activity theme dialog).
  2. As a error comes in my background activity I show it by snackbar. I can see it easily as my dialog activity is not on foreground yet.
  3. But when my dialog activity is in foreground and error comes, I can't see snackbar properly as it get hide by dialog activity.
  4. So i want to change the layout of Snackbar dynamically or any other work around will help to see my error Snack-bar in foreground.
  5. Here is the code --

final Snackbar snackBar = Snackbar.make(m_androidChartLayout,error.toString(),Snackbar.LENGTH_INDEFINITE);

    snackBar.show();

m_androidchartLayout is the layout of Activity in background.

0

There are 0 best solutions below