Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create a transparent Activity on top of another activity.

How can I achieve this?

share|improve this question
5  
LOL no dear... GPS SYSTEM... – UMAR Feb 1 '10 at 14:16
@SF. Beautiful Widgets uses a transparent activity, for example. – Josh Lee Feb 2 '10 at 4:21

6 Answers

up vote 266 down vote accepted

Add the following style In your res/values/styles.xml file (if you don’t have one, create it.) Here’s a complete file:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <style name="Theme.Transparent" parent="android:Theme">
    <item name="android:windowIsTranslucent">true</item>
    <item name="android:windowBackground">@android:color/transparent</item>
    <item name="android:windowContentOverlay">@null</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowIsFloating">true</item>
    <item name="android:backgroundDimEnabled">false</item>
  </style>
</resources>

(the value @color/transparent is the color value #00000000 which I put in res/values/color.xml file. You can also use @android:color/transparent in later Android versions)

Then apply the style to your activity, for example:

<activity android:name=".SampleActivity" android:theme="@style/Theme.Transparent">
...
</activity>
share|improve this answer
1  
Ok let me check. . . – user644458 Apr 27 '11 at 6:52
4  
I used <item name="android:windowBackground">@android:color/transparent</item> – Someone Somewhere Oct 19 '11 at 17:32
4  
Great! Just one improvement: If you use parent="@android:style/Theme.Dialog" you will get the exactly behaviour of a dialog. That means fading in/out instead of sliding in/out (like an activity) – Emilio Dec 9 '11 at 14:11
9  
As @Emilio mentioned this will behave like a dialog, mainly because of android:windowIsFloating set to true. Remove this property to behave like a normal activity (in this case it will match android:style/Theme.Translucent.NoTitleBar) – aromero Jan 3 '12 at 14:44
3  
I removed <item name="android:windowIsFloating">true</item> to have a fullscreen & transparent activity – Kiem Duong Aug 25 '12 at 9:06
show 14 more comments

It goes like this:

<activity android:name=".usual.activity.Declaration" android:theme="@android:style/Theme.Translucent.NoTitleBar" />
share|improve this answer
2  
You just add the theme as alex has posted to your activity declaration in the manifest - this bit android:theme="@android:style/Theme.Translucent.NoTitleBar, for each Activity you can assign it the Translucent theme – Donal Rafferty Feb 2 '10 at 10:51
3  
@UMMA: Using one question mark is typically sufficient. Multiple question marks make people who take the time to answer your questions think you're jumping at their faces. – Matthias Feb 2 '10 at 15:59
1  
@Matthias they usually are, because their bosses are jumpin' at theirs – Reno Jan 18 '11 at 1:54
1  
can you tell me how can i transparent activity 50%? becase this is 100% and i need 50% – Nik Patel Apr 6 '12 at 6:52
4  
@user1129443: 50% black should be #7f000000. Each component (A, R, G, B) can take values from 0-255. 50% of 255 = 127. 127 in Hex = 7F That how to calculate transparency (opacity) – Yul Jun 18 '12 at 8:16
show 4 more comments

I wanted to add to this a little bit as I am new Android developer as well. The accepted answers is great but I did run into some trouble. I wasn't sure how to add in the color to the colors.xml file. Here is how it should be done:

colors.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
     <color name="class_zero_background">#7f040000</color>   
    <color name="transparent">#00000000</color> 
</resources>

In my original colors.xml file I had the tag "drawable"

<drawable name="class_zero_background">#7f040000</drawable> 

and so I did that for the color as well, but I didn't understand that the "@color/" reference meant look for the tag "color" in the xml. I thought that I should mention this as well to help anyone else out.

share|improve this answer

Achived it on 2.3.3 by just adding android:theme="@android:style/Theme.Translucent" in activity tag in manifest . Dont know about lower versions

share|improve this answer
This works fine for 2.2 also. I just created a simple activity with a listview and it floats ontop of the last activity. – slott Apr 8 '12 at 21:21

declare your activity in manifest like this

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

and add a transperent background to your layout

Hope help..

share|improve this answer

just let the activity background image be transparent . or add the theme in xml file

<activity android:name=".usual.activity.Declaration" 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.