200字范文,内容丰富有趣,生活中的好帮手!
200字范文 > Android 沉浸式标题栏设置 顶部view到状态栏

Android 沉浸式标题栏设置 顶部view到状态栏

时间:2019-12-04 07:50:32

相关推荐

Android 沉浸式标题栏设置 顶部view到状态栏

Android 沉浸式标题栏设置,顶部view到状态栏

布局xml文件:

<?xml version="1.0" encoding="utf-8"?><android.support.constraint.ConstraintLayout xmlns:android="/apk/res/android"xmlns:app="/apk/res-auto"android:layout_width="match_parent"android:layout_height="match_parent"><TextViewandroid:id="@+id/tv_top_bg"android:layout_width="match_parent"android:layout_height="wrap_content"android:fitsSystemWindows="true"android:maxHeight="140dp"android:background="@drawable/case_resource_transport_top_bg"app:layout_constraintTop_toTopOf="parent" />...</android.support.constraint.ConstraintLayout>

activity AndroidManifest设置

<activity android:name="....xxActivity"android:screenOrientation="portrait"android:theme="@style/AppTheme.imgFullScreen"android:windowSoftInputMode="adjustPan"/>

stayles.xml 添加style

<style name="AppTheme.imgFullScreen"><item name="android:windowTranslucentStatus">false</item><item name="android:windowTranslucentNavigation">false</item><item name="android:statusBarColor">@android:color/transparent</item></style>

xxActivity添加

val decorView = window.decorViewval option = (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREENor View.SYSTEM_UI_FLAG_LAYOUT_STABLE)decorView.systemUiVisibility = optionwindow.statusBarColor = Color.TRANSPARENT

效果:

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。