我的应用程序有一个奇怪的问题,我的应用程序的工具栏比我的其他活动更暗,我不确定为什么会发生这种情况,有人可以帮我解决这个问题,也许我做错了什么工具栏代码,它不是一个问题,它只是看起来很难看。任何专家指导将受到高度赞赏。请让我知道,如果我将问题格式化错误,我希望在这方面做得更好。
activity_main.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"
android:id="@+id/coordinatorLayout"
tools:context="com.fayaz.uniabex.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>
<include layout="@layout/content_main" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@mipmap/ic_add_white_18dp"
app:backgroundTint="@color/colorFab"/>
答案 0 :(得分:1)
我认为这是因为AppBarLayout
的提升而发生的。
<android.support.design.widget.AppBarLayout
...
app:elevation="0dp">
请注意,将app:elevation
设置为零,而不是android:elevation
。