Android開發去除標題欄title

2021-07-27 04:55:16 字數 908 閱讀 3083

android開發去除標題欄title

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

1、在**中實現:

在此方法setcontentview(r.layout.main)之前加入:

requestwindowfeature(window.feature_no_title);標題欄就沒有了。

2、在androidmanifest.xml中實現:

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

android:theme="@android:style/theme.notitlebar">

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

解決辦法:

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

if (getsupportactionbar() != null)

2、第二種最簡單 直接用supportrequestwindowfeature好了:

supportrequestwindowfeature(window.feature_no_title);

3、第三種 直接修改style 缺點直接全域性了(注意繼承)

@color/colorprimary

@color/colorprimarydark

@color/coloraccent

false

true

4、第四種:

對應的activity 註冊中:新增 

Android開發去除標題欄title

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

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...