다음과 같은 레이아웃이 있습니다.
<android.support.design.widget.CoordinatorLayout
android:id="@+id/main_content"
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.support.design.widget.AppBarLayout
android:id="@+id/appBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</android.support.design.widget.CoordinatorLayout>
나는 추가 Fragment
에들 FrameLayout
을 대체. 내 중 하나는 Fragment
다음과 같은 레이아웃을 가진 목록입니다.
<android.support.v7.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
내 문제는 툴바가 목록 위에 그려져 있다는 것 입니다. 나는의 내용을 포장하여 해당를 해결하기 위해 노력 CoordinatorLayout
에 LinearLayout
오버 드로를 해결,하지만 그런 식으로 행동을 더 이상 작동하지 스크롤 appbar.
어떤 도움이라도 대단히 감사합니다!
Fragment
포함 목록을 다른 목록으로 교체 한 후 반환되지 않았습니다Fragment
. 이 방법으로 툴바를 수동으로 표시했습니다 .