i have 3 activitie.i want to amake all of them transparent. i have created a styles.xml in values folder and attached the folllowing code
<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>
in my android manifest i have attached the following code
for all three activities
now my activities are getting transparent but whne i move from first activity to second activity to 2nd activity i see the 1st activity in the background
what should i do so that i see onlt the 2nd activity and 1st activity is not seen in the background
also can i make an activity semi transparent?