I use A DrawerLayout
in ActivityA
.
I open the Drawer
at first. When I click
a item
on Drawer
, I skip to ActivityB
.
In ActivityB
,I close the Drawer
by EventBus
. When I click
the back button
,ActivityB
move out,and ActivityA
move in.
But the screen flash once when Activity
move in.
I know it's because that when I open a Drawer
,ActivityA
dark down.
When I turn back, Activity
become normal because the Drawer
is closed.
How can I deal with this problem?