如何删除应用栏上方的阴影?

时间:2016-02-29 15:08:14

标签: java android xml statusbar appbar

我想通过<item name="android:statusBarColor">@android:color/transparent</item>style name="AppTheme.NoActionBar"添加到<android.support.design.widget.AppBarLayout android:layout_width="match_parent" android:layout_height="match_parent" android:theme="@style/MyMaterialTheme.AppBarOverlay"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="match_parent" android:background="?attr/colorPrimary" app:popupTheme="@style/MyMaterialTheme.PopupOverlay"/> </android.support.design.widget.AppBarLayout> <include layout="@layout/content_search"/> 上的v21 / styles.xml来使状态栏变得透明,但我仍然在应用栏上方留下阴影,是否可以删除它?

编辑: 好的我认为解决方案是移动应用栏占据状态栏空间并扩展额外dp的应用栏以匹配它的大小所以我的问题是,是否可以向上移动或扩展应用栏高度?

activity_search.xml

public void startSavingProcess()
{
    Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application();

    if (xlApp == null)
    {
        MessageBox.Show("Oops, Excel is not properly installed on this machine.");
    }
    try
    {
        xlApp = new Microsoft.Office.Interop.Excel.Application();
        xlApp.Workbooks.Add();
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message + " \t\t" + ex.ToString(), "Error Saving", MessageBoxButtons.OK, MessageBoxIcon.Error);
    }
}

enter image description here

5 个答案:

答案 0 :(得分:15)

我认为这个问题指的是同样的问题 Android appbarlayout elevation appears in status bar

  

可能的解决方案:

您的根布局应始终[type=checkbox]:after { content: attr(value); } ,否则您的UI不会在状态栏后面绘制。

现在将android:fitsSystemWindows="true"包含在另一个{/ 1}}中,其中包含

AppBarLayout

这样可以防止阴影溢出到状态栏。

答案 1 :(得分:5)

将高程0dp添加到 AppBarLayout

<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:elevation="0dp">

答案 2 :(得分:5)

使用所需的状态栏颜色,在活动的 onCreate 中调用以下方法。

public void changeStatusBarColor(String hexColor)
  {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        Window window = getWindow();
        window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
        window.setStatusBarColor(Color.parseColor("#AD2525"));
    }
 }

XML

<?xml version="1.0" encoding="utf-8"?><android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.example.bharath.myapplication.MainActivity">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#AD2525"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">
    <!--
    Other views
    -->

</RelativeLayout></android.support.design.widget.CoordinatorLayout>

Result

答案 3 :(得分:0)

<com.google.android.material.appbar.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:elevation="0dp"
            android:theme="@style/AppTheme.AppBarOverlay">

            <androidx.appcompat.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="@color/colorPrimaryDark"
                app:popupTheme="@style/AppTheme.PopupOverlay"
                 />

 </com.google.android.material.appbar.AppBarLayout>

答案 4 :(得分:0)

您还可以根据状态栏高度在应用栏上添加填充:

ViewCompat.setOnApplyWindowInsetsListener(binding.root) { _, insets ->
        val statusBarInsets = insets.getInsets(WindowInsetsCompat.Type.statusBars())
        val bottomBarInsets = insets.getInsets(WindowInsetsCompat.Type.navigationBars())
        binding.appBarLayout.setPadding(0, statusBarInsets.top, 0, 0)
        binding.root.setPadding(0, 0, 0, bottomBarInsets.bottom)
        insets
    }

您可以将其放入您的 onCreateView()onViewCreated() 方法中。 请记住从您的布局中删除 android:fitsSystemWindows="true",因为您正在手动为视图设置内边距,并且插图必须保持为全屏片段。