How can I make the icons of Toolbar
not be hidden when I turn the screen? (I'm programming on Android with Java) ..
How can I make the icons of Toolbar
not be hidden when I turn the screen? (I'm programming on Android with Java) ..
One way to avoid reconstructing the Activity
, is to define the following property within your AndroidManifest.xml
, within <activity
:
<activity
...
...
android:configChanges="orientation|screenSize">