android開發去除標題欄的方法
1:新建一個項目運行起來,可以看到頂部一直有個標題欄看著不是很美觀
2:有兩種方法可以去除頂部標題欄
(1)將代碼中AndroidManifest裡android:theme=”@style/Theme.MyApplication”改為android:theme=”@style/Theme.AppCompat.NoActionBar”>
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/Theme.AppCompat.NoActionBar" >
(2)在themes.xml文件裡改,選中MyApplication,Ctrl+鼠標點擊
來到themes.xml文件裡,把代碼中parent=”Theme.MaterialComponents.DayNight.DarkActionBar”替換為
parent=“Theme.AppCompat.Light.NoActionBar”
<style name="Theme.MyApplication" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> <!-- Primary brand color. --> <item name="colorPrimary">@color/purple_500</item> <item name="colorPrimaryVariant">@color/purple_700</item> <item name="colorOnPrimary">@color/white</item> <!-- Secondary brand color. --> <item name="colorSecondary">@color/teal_200</item> <item name="colorSecondaryVariant">@color/teal_700</item> <item name="colorOnSecondary">@color/black</item> <!-- Status bar color. --> <item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item> <!-- Customize your theme here. --> </style>
3:效果展示
到此這篇關於android開發去除標題欄的文章就介紹到這瞭,更多相關android去除標題欄內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Android關於Button背景或樣式失效問題解決方法
- Android中Button實現點擊換圖案及顏色
- Android 使用Toolbar實現應用欄實例詳解
- Android實現佈局全屏
- idea下Android各目錄所代表的含義介紹