user1261129
user1261129

Reputation: 227

How to make activity not full screen?

how to make the app not full screen, as in this screenshot? https://dl.dropboxusercontent.com/u/73143561/Screenshot_2013-05-29-05-47-07%5B1%5D.png

Upvotes: 10

Views: 15133

Answers (1)

yuva ツ
yuva ツ

Reputation: 3703

Use this theme for your activity in the AndroidManifest.xml file

android:theme="@android:style/Theme.Dialog"

If you're using AppCompat, use

android:theme="@android:style/Theme.AppCompat.Dialog" 

or

android:theme="@android:style/AppCompat.Light.Dialog"

Upvotes: 28

Related Questions