关于删除Android中的活动标题栏

use*_*591 6 android coding-style android-sdk-2.1 android-titlebar android-theme

我已经将我的活动主题设置为android:theme ="@ android:style/Theme.Dialog"但我也想删除活动的标题栏.那么如何使用android:theme ="@ android:style/Theme.Black.NoTitleBar.Fullscreen"以及对话框主题.

Pet*_*ego 14

尝试创建扩展的自定义样式Theme.Dialog:

<resources>
    <style name="DialogNoTitle" parent="android:Theme.Dialog">
        <item name="android:windowNoTitle">true</item>
    </style>
</resources>
Run Code Online (Sandbox Code Playgroud)