程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-隱藏默認的窗口標題欄

android-隱藏默認的窗口標題欄

編輯:編程綜合問答
隱藏默認的窗口標題欄

在應用程序裡已經自定義了窗口標題欄,但是運行程序的時候會先顯示默認的標題欄,我添加了一個透明背景,但是無效。

custom_title.xml: 
<resources>
<style name="CustomWindowTitleBackground">
    <item name="android:background">@android:color/transparent</item>
</style>

<style name="CustomTheme" parent="android:Theme">
    <item name="android:windowTitleSize">35dip</item>
    <item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>

 </style>

多謝幫忙~

最佳回答:


試試實現全屏的Activity和noTitleBar。然後在Activity中創建一個繼承自定義標題欄的layout。如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" 
    android:layout_width="fill_parent" android:layout_height="fill_parent">
    <your custom title bar/>
    <your main layout/>

</LinearLayout>

然後用戶運行Activity時,默認的標題欄就被隱藏了,這個和自定義標題一樣的會先顯示。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved