查看层次结构
<LinearLayout>
<Toolbar>..
</Toolbar>
<FrameLayout>
<CoordinatorLayout>..
<FrameLayout>
</FrameLayout>
</CoordinatorLayout>
</FrameLayout>
</LinearLayout>
想摆脱深蓝色条带。不确定为什么Co-ordinatorLayout将此视图添加到顶部。我尝试用LinearLayout替换它,这导致了期望的结果。无法弄清楚为什么以及什么视图显示为蓝色暗条。
toolbar_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_marginTop="20dp"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@color/white"
app:title="DISCOVER"
app:titleTextAppearance="@style/TextAppearance.MyApp.Widget.ActionBar.Title" />
<View
style="@style/Divider"
android:background="@color/grey_light" />
<FrameLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white">
</FrameLayout>
</LinearLayout>
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"
tools:context="com.discover.MainActivity">
<FrameLayout 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:id="@+id/main_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.discover.MainActivity"
tools:showIn="@layout/activity_main"
android:layout_margin="0dp"
android:background="#11a2cb"></FrameLayout>
</android.support.design.widget.CoordinatorLayout>
BaseActivity.java
@Override
public void setContentView(int layoutResID) {
super.setContentView(R.layout.toolbar_layout);
mToolbar = (Toolbar) findViewById(R.id.toolbar);
mContentlayout = (FrameLayout) findViewById(R.id.content);
setSupportActionBar(mToolbar);
getLayoutInflater().inflate(layoutResID, mContentlayout);
}
在MainActivity中我使用的是setContentView(R.layout.activity_main)
答案 0 :(得分:1)
<强>解决方案:强>
将android:fitsSystemWindows="true"
添加到根布局,即我的案例中的LinearLayout就像魅力一样。
<强>原因:强>
我仍然想知道正在显示什么神秘视图。如果有人可以指出,请做出回应以更清楚地理解问题。