溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java怎么實現(xiàn)漸變色沉浸式狀態(tài)欄

發(fā)布時間:2021-10-29 17:21:21 來源:億速云 閱讀:311 作者:iii 欄目:編程語言

這篇文章主要介紹“Java怎么實現(xiàn)漸變色沉浸式狀態(tài)欄”,在日常操作中,相信很多人在Java怎么實現(xiàn)漸變色沉浸式狀態(tài)欄問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Java怎么實現(xiàn)漸變色沉浸式狀態(tài)欄”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

在AndroidManifest.xml中的activity中使用自定義主題
<activity android:name=".dailyAccompany.view.activity.AlarmListActivity"
    android:theme="@style/TranslucentStatusTheme"
    android:screenOrientation="portrait">
</activity>

然后在style.xml中去定義該主題

values的styles.xml

<!--透明狀態(tài)欄-->
<style name="TranslucentStatusTheme" parent="Theme.AppCompat.Light.NoActionBar">
 
</style>

values-v19的styles.xml

<style name="TranslucentStatusTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="android:windowTranslucentStatus">true</item>
    <item name="android:windowTranslucentNavigation">true</item>
</style>

values-v21的styles.xml

<style name="TranslucentStatusTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="android:windowTranslucentStatus">false</item>
    <item name="android:windowTranslucentNavigation">true</item>
    <item name="android:statusBarColor">@android:color/transparent</item>
</style>

在布局文件中的第一個控件設置為漸變

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/alarm_shade_bg"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools">
 
    <ImageView
        android:id="@+id/alarm_top"
        android:layout_width="match_parent"
        android:layout_height="64dp"
        android:background="@drawable/title_shade_bule"/>

   省略中間布局。。。。。。。。。。。。。。。。。。

</android.support.constraint.ConstraintLayout>

然后去定義漸變布局title_shade_bule

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <gradient
        android:angle="180"
        android:centerColor="#2798f0"
        android:endColor="#6043ce"
        android:startColor="#6043ce"
        android:type="linear" />
</shape>

就可以實現(xiàn)了

注:如果頂部是使用Toolbar,需要在Toolbar中加上

android:fitsSystemWindows="true"

到此,關于“Java怎么實現(xiàn)漸變色沉浸式狀態(tài)欄”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI