你可以試試這個: getActionBar()隱藏(); 如果你有機器人,你可以解決它在你的RES /價值/風格更深入地瞭解文件: 如果你正在爲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"
,並在這裏你去:
嘿謝謝你的答案。我仍然不知道把風格放在哪裏。 ActionBar風格在哪裏 – James
你知道如何擺脫整個酒吧,拿着那些圖片,而不僅僅是圖片本身嗎? THANKs – James
@James:如果你想隱藏整個'ActionBar',那麼請參考Alex的回答。 –