Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Full Screen in customize theme

I need my app to show as full screen. Now I know how to add this feature into the application tag in Mainfest using

android:theme=”@android:style/Theme.NoTitleBar.Fullscreen" 

However, I have my own theme called "CodeFont", and I cannot use two themes in the same application. How I can add this feature into my own style tag in my resources file? There is no such things as an android:style tag.

like image 504
panda Avatar asked Mar 25 '12 09:03

panda


People also ask

How do I make my WordPress theme full width?

Using a built-in full-width template in your WordPress themeOn the page edit screen, you can select full width as your template that you will find under the pages attributes Meta box. Once you get that done, you will have to save your page.

How do I change the layout of one page in WordPress?

To set a certain layout for one page, make sure to have the Meta Box plugin installed: https://wordpress.org/plugins/meta-box/ . With it installed, you can scroll down when editing the page and set the layout you want for it. and I can choose Layout.


1 Answers

Create your custom theme by using default theme, like this

window with Fullscreen

<style name="generalnotitle" parent="general">     <item name="android:windowFullscreen">true</item> </style> 

window with NoTitle

<style name="generalnotitle" parent="general">     <item name="android:windowNoTitle">true</item> </style> 
like image 111
RajaReddy PolamReddy Avatar answered Oct 16 '22 02:10

RajaReddy PolamReddy