How to turn the screen without hiding the icons? [closed]

1

How can I make the icons of Toolbar not be hidden when I turn the screen? (I'm programming on Android with Java) ..

    
asked by Wayner 12.06.2017 в 18:25
source

1 answer

0

One way to avoid reconstructing the Activity , is to define the following property within your AndroidManifest.xml , within <activity :

 <activity
            ...
            ...
            android:configChanges="orientation|screenSize">
    
answered by 12.06.2017 в 18:35