AndroidManifest.xmlのActivityの宣言で
"@android:style/Theme.Translucent.NoTitleBar"
とつけるだけで、ボタンなどが浮かんで見えるような画面が作れます!
とってもカンタンだ!
<activity
android:name=".OfferReceivedActivity"
android:label="@string/message_received"
android:theme="@android:style/Theme.Translucent.NoTitleBar">
</activity>
