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.

windowIsFloating while a great one stop shop for creating Dialog styled UI's has many ---bugs--- quirks.

The one which I'm battling right now is that it assigned the width/height of the top ancestor as "wrap_content" rather than the width/height of the screen. This means the usual UI design of using "match_parents" will propogate upwards to become "wrap_content". Bad times.

So, what I would really like is to create an activity, and have a layout like so:

<LinearLayout   android:layout_height="wrap_content"
                android:layout_width="match_parent"
                android:orientation="vertical"
                android:id="@+id/containerPageConatiner"
                android:background="@drawable/windowBackground">
    <View           android:layout_width="match_parent"
                    android:layout_height="0dp"
                    android:layout_weight="1"/>
    <FrameLayout    android:id="@+id/singlePane"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:layout_gravity="center_horizontal|center_vertical"
                    android:padding="10dp"/>    
    <View           android:layout_width="match_parent"
                    android:layout_height="0dp"
                    android:layout_weight="1"/>                         
</LinearLayout> 

Which produces a UI showing a single window (@id/singlePane) ontop of the Activity which called it.

Does anybody have the just right set of styles needed to create a transparent background Activity?

share|improve this question

2 Answers

up vote 9 down vote accepted

Thanks to @PolamReddy who nudged me towards answer I wanted:

The theme above contains styled attributes needed to create a fully transparent window created from Theme.Translucent.NoTitleBar.Fullscreen and its ancestors:

<style name="Theme.CustomTheme.TransparentActivity">
    <item name="android:windowBackground">@android:color/transparent</item>
    <item name="android:colorBackgroundCacheHint">@null</item>
    <item name="android:windowIsTranslucent">true</item>
    <item name="android:windowAnimationStyle">@android:style/Animation</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowContentOverlay">@null</item>
    <item name="android:windowFullscreen">true</item>
</style> 

This style must be assigned to the Activity in the AndroidManifest.xml rather than the root view of a layout.

share|improve this answer

use like this for activity in the manifest file ( theme represents the transparent of that activity.)

<activity android:name=".Settings"      
          android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
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.