Android開發去除標題欄title

2021-08-17 04:14:38 字數 676 閱讀 4330



一、android開發去除標題欄title其實非常簡單,他有兩種方法,一種是在**中新增,另一種是在androidmanifest.xml中新增:

1、在**中實現:

在此方法setcontentview(r.layout.main)之前加入:requestwindowfeature(window.feature_no_title);標題欄就沒有了。

2、在androidmanifest.xml中實現:

註冊activity時加上如下一句配置就可以實現。

二、requestwindowfeature(window.feature_no_title)無效解決方法:

1、手動在oncreate裡呼叫hide()

if (getsupportactionbar() != null)

2、第二種:用supportrequestwindowfeature設定:

supportrequestwindowfeature(window.feature_no_title);

3、第三種:直接修改style ,缺點是直接全域性都無title了(注意繼承)

@color/colorprimarydark

@color/coloraccent

false

true

4、第四種:  對應的activity 註冊中:

Android開發去除標題欄title

android開發去除標題欄title android開發去除標題欄title其實非常簡單,他有兩種方法,一種是在 中新增,另一種是在androidmanifest.xml中新增 1 在 中實現 在此方法setcontentview r.layout.main 之前加入 requestwindowf...

android去除標題欄

這是常用的幾種辦法 方法1 直接在activity的oncreate 方法中,requestwindowfeature window.feature no title 注意這句 要寫在,設定布局之前,不過這樣有個缺點只是在單個頁面的!方法2 在清單檔案中配置一下,將它預設的主題改為 android ...

Android去除標題欄

name concealtitle name android windownotitle true item style resources 再從menifest中引用 android theme style concealtitle android系統自帶樣式 android theme andr...