关于全屏幕和从清单中没有标题栏清单、标题栏、全屏幕

2023-09-14 23:01:53 作者:你的身边太拥挤

我想设置全屏查看我的应用程序。 我要设置在单独的活动全屏 NoTitlebar 的理念。 但我想将它设置在我的清单文件,并为整个应用程序不仅为Perticullar活动。 。 。它是如何可能的? 帮我。 。 。谢谢你。

I want to set the Full screen view in My application. I got the Idea about to set it in individual activity for FullScreen and NoTitlebar . But i want to Set it in My Manifest file and for the Whole application not only for Perticullar activity. . . How it is Possible ?? Help me. . . Thanks.

推荐答案

要设置您的应用程序或在全屏模式下的任何个人行为显示,请将code

To set your App or any individual activity display in Full Screen mode, insert the code

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

在AndroidManifest.xml中,根据应用程序或活动的标签。

in AndroidManifest.xml, under application or activity tab.

 
精彩推荐
图片推荐