你可以试试这个:getActionBar().hide(); 如果您对 android 有更深入的了解,您可以在 res/values/styles 文件中修复它:如果您正在为 android v14 等进行开发:
<style name="YourTheme" parent="@android:style/Theme.Holo.Light.NoActionBar"></style>
<style name="YourThemeBlack" parent="@android:style/Theme.Holo.NoActionBar"></style>
然后转到 AndroidManifest.xml:
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/YourTheme" > or YourBlackTheme
<activity....
如果您只想接受一项活动的主题:
<activity
android:name="ua.bloxy.buildinghouse.MainActivity"
android:label="@string/app_name"
android:theme="@style/YourTheme" >
为了隐藏徽标,只需设置一个透明图像...例如创建一个没有背景的 .png 图像,或者您可以在 android 中创建一个透明的可绘制对象:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="#00000000" />
</shape>
然后在android清单中
<application
android:allowBackup="true"
android:icon="@drawable/icon"
给你: