-4
A
回答
0
試試這個清單文件:
<activity android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
0
的Android manifest.xl當u加入活動 添加此代碼
<activity
android:name=".activity.MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
0
1 。適用這個主題來移除整個標題欄在你style.xml
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
比應用TI這樣
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
2.您的活動試試這個全屏活動
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// remove title
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activitymain);
}
3.也試試這個
<activity android:name=".YourActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
0
,你也可以的setContentView之前在您的活動試試這個:
//Remove title bar
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
//Remove notification bar
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
//set content view AFTER ABOVE sequence (to avoid crash)
this.setContentView(R.layout.your_layout_name_here);
0
你應該定義在styles.xml文件應用程序的風格,而不是單獨的佈局文件。以下是我的一個項目的示例:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowActionBarOverlay">true</item>
<item name="colorControlActivated">@color/colorSecondaryDark</item>
</style>
</resources>
相關問題
- 1. 的Android刪除標題欄
- 2. Android PreferenceScreen標題欄刪除
- 3. Android 3.2從操作欄刪除標題
- 4. 無法刪除android中的標題欄
- 5. 刪除Android應用上的標題欄
- 6. Android對話框:刪除標題欄
- 7. Eclipse中的Android刪除標題欄
- 8. 刪除默認標題欄
- 9. 刪除標題欄Phonegap
- 10. 無法刪除標題欄?
- 11. 刪除JInternalFrame標題欄
- 12. Bigcartel - 刪除邊欄標題
- 13. 無法刪除標題欄
- 14. 請刪除標題欄
- 15. Python Tkinter刪除標題欄
- 16. Android的標題欄去除
- 17. 移除Android的標題欄
- 18. Android Studio刪除欄
- 19. 刪除欄標CSS
- 20. 刪除標籤欄
- 21. 刪除Outlook AddIn邊欄標題
- 22. 如何刪除MVVMCross中的標題欄
- 23. 刪除Windows窗體中的標題欄
- 24. 地鐵表單中刪除標題欄
- 25. Python/Tkinter:刪除標題欄沒有overrideredirect()
- 26. 刪除標題欄更改顯示ProgressDialog
- 27. Java:僅刪除標題欄按鈕
- 28. iOS ViewDeck刪除整體標題欄
- 29. PyQT刪除程序標題欄?
- 30. Phonegap刪除標題欄在開始
請參閱此鏈接https://stackoverflow.com/a/2591311/3364266 –