我在root有一个CoordinatorLayout,其AppBarLayout包含一个LinearLayout,它有2个LinearLayout作为子级。让我们称这些子布局A和B.我不能同时显示A和B的内容。 A节目和B的内容没有,当我删除A的内容时,B节目的内容,反之亦然。当我在LinearLayout容器中有A和B的内容时,这就是看起来的样子。
A和B都有Textviews,但只有A的TextView显示而B没有。
以下是布局的代码:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
<LinearLayout
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffff"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
<LinearLayout
android:orientation="vertical"
android:minWidth="25px"
android:minHeight="25px"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/A"
android:padding="10dp">
<TextView
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/title"
android:textColor="#000000"
android:fontFamily="sans-serif-light" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:minWidth="25px"
android:minHeight="25px"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/B"
android:background="@drawable/border"
android:padding="10dp">
<TextView
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textview"
android:textColor="#000000"
android:fontFamily="sans-serif-light" />
</LinearLayout>
</LinearLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/rv"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
我已经尝试了一切,但我无法弄清楚出了什么问题。滚动行为工作正常,但我看不到A和B的内容。 有人可以帮忙吗?
答案 0 :(得分:1)
我通过使用FrameLayout而不是Linearlayout作为A和B的容器来解决这个问题。