我已经将我的活动主题设置为android:theme =“@ android:style / Theme.Dialog” 但我也想删除活动的标题栏。那怎么用 机器人:主题= “@安卓风格/ Theme.Black.NoTitleBar.Fullscreen” 以及对话框主题。
答案 0 :(得分:14)
尝试创建扩展Theme.Dialog
的自定义样式:
<resources>
<style name="DialogNoTitle" parent="android:Theme.Dialog">
<item name="android:windowNoTitle">true</item>
</style>
</resources>
答案 1 :(得分:3)
我相信你可以在你的活动的onCreate()中指定这个:
requestWindowFeature(Window.FEATURE_NO_TITLE);
答案 2 :(得分:0)
对于styles.xml
,以下解决方案为我工作:
在parent="Theme.AppCompat.NoActionBar"
添加没有操作栏的新主题样式并设置<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimary</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowBackground">@color/colorPrimary</item>
</style>
。
androidManifest.xml
现在为<activity
android:name=".ActivityName"
android:theme="@style/SplashTheme"> // apply splash them here
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
{{1}}
结果如下: