- 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).
- 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.
- But when my dialog activity is in foreground and error comes, I can't see snackbar properly as it get hide by dialog activity.
- 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.
- 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.