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.

link|improve this question
2  
Theme.Dialog creates 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
feedback

2 Answers

Try creating a custom style that extends Theme.Dialog:

<resources>
    <style name="DialogNoTitle" parent="android:Theme.Dialog">
        <item name="android:windowNoTitle">true</item>
    </style>
</resources>
link|improve this answer
this is the CORRECT and greatest answer!!! I wish the OP would accept this answer. saved me so much time. thanks! – kharles Jun 8 '11 at 2:51
Thanks for the comment. Glad I could help. – Peter Knego Jun 8 '11 at 6:37
feedback

I believe you can specify this in your activity's onCreate():

requestWindowFeature(Window.FEATURE_NO_TITLE);
link|improve this answer
yeah but you need to do no.theme in the activity tag in the manifest otherwise you still will have a title flash at application startup – Fred Grott Nov 13 '10 at 20:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.