半透明背景のactivity

AndroidManifest.xmlのactivity要素でandroid:theme属性でテーマを指定。
テーマは、android:style/Theme.Translucent から導出して、windowsBackgroundに色アイテムを指定。
色アイテムは drawableで指定。
という具合になります。
これらを3ファイルに分割していますが、AndroidManifest.xml以外は、valuesフォルダ配下のどこでもたぶんOK。

values/colors.xml

<resources>
  <drawable name="black66">#66000000</drawable>
</resources>

values/styles.xml

<resources>
  <style name="Theme.HalfTransparent" parent="android:style/Theme.Translucent">
    <item name="android:windowBackground">@drawable/black66</item>
  </style>
</resources>

AndroidManifest.xml

  ...
  <activity ... android:theme="@style/Theme.HalfTransparent" ...>
  ...