Create a new activity and set the top-level view to have a translucent background:
android:background="#c0000000"
EDIT: You also need to declare the activity to have a transparent background. Setting this theme for the activity in the manifest will work:
android:theme="@android:style/Theme.Translucent"