-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem with NoActionBar bar activity #19
Comments
I have the same problem |
Me too @itishrishikesh |
I am facing same problem. |
Me 2 |
This is fixed in 1.0.3 |
Sorry, what is the expected behavior? Thanks |
I am using the latest version 1.0.3 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { If I am using in full screen with no limits layout. Flashbar is hiding behind the status bar. And applying the theme "Theme.AppCompat.Light.NoActionBar" |
I'm experience the same behaviour where the Flashbar instance appears behind the status bar. I'm using the AppCompat.NoActionBar theme and have tried everything that I can think of to have the Flashbar render below the status bar, rather than beneath it. No luck so far! (Using Flashbar 1.0.3) |
me too having the same prob! |
not working |
same problem |
2 similar comments
same problem |
same problem |
I had the same problem, it was fixed when I started using version 1.0.3 |
Hi, I tried to use this in my new app and it's working fine but when I used this with a no NoActionBar activity it's not showing properly on Flashbar.Gravity.TOP
This is my code which I am writing
Flashbar.Builder builder = new Flashbar.Builder(activity) .gravity(gravity) .title(title) .message(body) .enableSwipeToDismiss() .backgroundColorRes(R.color.colorPrimarylight) .enterAnimation(FlashAnim.with(activity) .animateBar() .duration(Flashbar.DURATION_SHORT) .alpha() .overshoot()); _flashBar=builder.build();
This is the preview of the problem
What should I do ?
The text was updated successfully, but these errors were encountered: