Activity without Toolbar

1

I would like to take the toolbar that appears above 'SeraAgora'. In view editing does not appear but when compiling comes back to life. How to get her out?

    
asked by anonymous 17.04.2018 / 01:55

1 answer

3

You can configure the activity theme in the manifest:

<manifest ... >
    <application ... >
        <activity android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen" ... >
        </activity>
    </application>
</manifest>

Use auto complete to see the options, there are several that do not come with the toolbar, go testing and choose the one you like best, the only problem is that you can change other styles of activity

    
17.04.2018 / 02:18