Activity without Toolbar

Asked

Viewed 67 times

1

inserir a descrição da imagem aqui

I would like to take out the Toolbar that appears above 'Seraagora'. In the view edition it does not appear but when compiling back to life. How to get her out?

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 Toolbar, test and choose the one you think best, the only problem is that you can change other styles of Activity

Browser other questions tagged

You are not signed in. Login or sign up in order to post.