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.

I've created an anim dir with 2 xml for fadein and fadeout, I solved using it with activities and dialogbuilder:

overridePendingTransition(R.anim.fadein,R.anim.fadeout);

Using this code to go to full screen I don't know how applying a style:

getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);
            getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);

How applying a style to fullscreen?

share|improve this question
do you want style for fullscreen ? – Chirag Raval Dec 29 '12 at 13:07

2 Answers

<activity android:name=".yourActivityName"
          android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">

1.you can apply this maifest file

share|improve this answer

Just like as..
In values/styles.xml

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

In AndroidManifest.xml

<activity 
    android:name=".MainActivity" 
    android:theme="@style/CodeFont"> 

Also can see..
http://ajitmahajani.wordpress.com/2012/03/27/android-full-screen-activity/
http://developer.android.com/guide/topics/ui/themes.html ...

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.