I want to create a transparent Activity on top of another activity.
How can I achieve this?
|
I want to create a transparent Activity on top of another activity. How can I achieve this? |
|||||||
|
|
Add the following style In your
(the value Then apply the style to your activity, for example:
|
|||||||||||||||||||||
|
|
It goes like this:
|
|||||||||||||||||||||
|
|
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
In my original colors.xml file I had the tag "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. |
|||
|
|
|
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 |
|||
|
|
declare your activity in manifest like this
and add a transperent background to your layout Hope help.. |
|||
|
|
|
just let the activity background image be transparent . or add the theme in xml file
|
|||
|
|