지금 당장은 정상적으로 보이는 Toolbar
입니다. 내가 뭘 원하는 아래 그림과 같이 Toolbar
와 TabLayout
사이에 사용자 정의 레이아웃을 추가 할 수 있습니다 :아래의 TabLayout이있는 툴바의 사용자 정의 레이아웃
왼쪽에 내 Toolbar
지금의 모습이고, 오른쪽에 무엇입니까 나는 그 모습을 원한다.
보시다시피, ImageView
및 두 개의 TextView
을 레이아웃에 추가하고 싶습니다.
어떻게하면됩니까?
<?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"
android:id="@+id/main_content"
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/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/AppTheme.PopupOverlay" />
<android.support.design.widget.TabLayout
android:id="@+id/tablayout"
android:layout_width="match_parent"
android:layout_height="48dp"
app:layout_scrollFlags="scroll|enterAlways" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
해당 섹션을 접기시겠습니까? 아니면 항상 확장 된 높이를 표시 했습니까? – ianhanniballake
@ianhanniballake 사용자가 아래로 스크롤하면 'Toolbar'와 'TabLayout'이 모두 사라지고 사용자가 위로 스크롤 할 때 (맨 위로 이동하지 않을 때), 'Toolbar'는 아니고'TabLayout'이 아니며, 사용자가 맨 위로 스크롤하면'Toolbar'와'TabLayout'을 모두 보여줍니다. 그게 가능한 일이 아니라면 스크롤을 통해 사라지게하고 사용자가 맨 위로 스크롤 할 때만 표시하는 것을 선호합니다. – f1gh6sadf