i have already set the theme of my activity as android:theme = "@android:style/Theme.Dialog" but i also want to remove the title bar of the activity. so how to use android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" along with the dialog theme.
|
feedback
|
|
Try creating a custom style that extends
| |||||
feedback
|
|
I believe you can specify this in your activity's onCreate():
| |||
feedback
|
Theme.Dialogcreates a floating transparent widget where you can see underlying activities. Are you sure that the titlebar does not belong to an underlying activity – Peter Knego Nov 13 '10 at 9:08