1
votes

I managed to get full screen on activity level. But I can't on application level.

When I move android:theme="@android:style/Theme.NoTitleBar.Fullscreen" from activity to application part, then red X appears on the left side of my Manifest page.

What shall I do? Please help me out.

1
The 'application' doesn't have a 'screen' - it's invisible and exists as a background framework for all other components. You'll have to set it on every Activity. Either that or use a single Activity with Fragments.Squonk
You mean I can not get fullscreen on application level? What do you think of Fouad Wahabi's coding on application level?하여름

1 Answers

1
votes

It works well like this :

 <application
    android:icon="@drawable/icon"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" />

can you set the error shown ?