如何使用我的应用名称和图标摆脱顶部的边距?
如果您需要,这是我的SDK版本
android:minSdkVersion="11"
android:targetSdkVersion="17"
答案 0 :(得分:3)
将您的清单文件更改为:
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" >
注意 android:theme =“@ android:style / Theme.NoTitleBar”
答案 1 :(得分:1)
顶部的栏名为Action Bar。您可以通过选择没有操作栏的主题(例如Theme.Holo.NoActionBar
)或在您的活动中调用getActionBar().hide()
来删除它。