Reputation: 1550
Sorry for beginning a noob but how do are do this with a small Activity/box where you can still see the background like in the image below. Are there any examples? Any help would be awesome. Thanks
Upvotes: 0
Views: 71
Reputation: 521
Declare this code in your activity in manifest file then it becomes dialog
android:theme="@android:style/Theme.Dialog"
Upvotes: 0
Reputation: 23269
This is a Dialog
http://developer.android.com/guide/topics/ui/dialogs.html
A dialog is a small window that prompts the user to make a decision or enter additional information. A dialog does not fill the screen and is normally used for modal events that require users to take an action before they can proceed.
Upvotes: 1