Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My app need to show as full screen, now I know how to add this feature into 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 at the same application. How I can add this feature into my own style tag in my resources file? there is no such android:style tag. plz help. thx.

share|improve this question

4 Answers

up vote 7 down vote accepted

create your custom theme by using your own theme and default theme, like this

windowFullscreen

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

window no tittle bar

<style name="generalnotitle" parent="general">
    <item name="android:windowNoTitle">true</item>
</style>
share|improve this answer
this does not do fullscreen. you need <item name="android:windowFullscreen">true</item> – robsf Dec 7 '12 at 20:18

Create your custom theme with parent attribute to inherit NoTitleBar.Fullscreen property from general android theme.

values/styles.xml

<resources> 
   <style name="CodeFont" parent="android:Theme.NoTitleBar.Fullscreen">
      <item name="android:windowNoTitle">true</item> 
      ...
   </style>
</resources>

AndroidManifest.xml

<activity 
    android:name=".MainActivity" 
    android:theme="@style/CodeFont"> 
      ...
</activity>
share|improve this answer

you can request some features and flags in code by using ( for example ):

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    getWindow().requestFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.some_layout);
    getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
share|improve this answer

in style.xml add

<item name="android:windowFullscreen">true</item>

to your theme. Example:

<style name="CodeFont" parent="android:Theme.Light">
     <item name="android:windowFullscreen">true</item>
</style>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.