I want to create a transparent Activity on top of another activity.
How can I achieve this?
The easiest way that I have found is to set the activity's theme in the AndroidManifest to android:theme="@android:style/Theme.Holo.Dialog".
android:theme="@android:style/Theme.Holo.Dialog"
Then in the activity's onCreate method, call getWindow().setBackgroundDrawable(new ColorDrawable(0));.
getWindow().setBackgroundDrawable(new ColorDrawable(0));