How to create transparent activity in android in that screen tap to dismiss button automatically dismiss the activity. please provide any solution.
There are two ways to achieve this
android:theme="@android:style/Theme.Translucent"
eg.
android:background="@drawable/transparent_bg"
or
android:background="#33BBFFFF"
this is a semi transparent color
Related Links
How to make a background 20% transparent on Android
Understanding colors on Android (six characters)
Hope it helps !!