I want to create a transparent Activity on top of another activity.
How can I achieve this?
You can remove setContentView(R.layout.mLayout) from your activity and set theme as android:theme="@style/AppTheme.Transparent". Check this link for more details.
setContentView(R.layout.mLayout)
android:theme="@style/AppTheme.Transparent"