我有Coordinator
布局:
<?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=".ui.activity.MainActivity"
android:background="#333">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar_layout"
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>
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:id="@+id/main_content_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include
layout="@layout/whats_new" />
<include
layout="@layout/discover_movies_button" />
</LinearLayout>
</ScrollView>
</android.support.design.widget.CoordinatorLayout>
运行时,所有内容都会正确显示。
但是我想在运行时手动添加whats_new
布局。
所以我从上面的XML代码中删除了它,并添加如下:
final LinearLayout mainContentLayout = (LinearLayout) findViewById(R.id.main_content_layout);
final View whatsNewView = getLayoutInflater().inflate(R.layout.whats_new, mainContentLayout, false);
mainContentLayout.addView(whatsNewView, 0);
但现在whats_new
布局部分隐藏了工具栏......我明白这与协调器布局有关,但我不知道如何修复它。