Как использовать Collapsing Toolbar с TabLayout, используя компоненты Material и AndroidX? - PullRequest
0 голосов
/ 26 мая 2019

Я пытаюсь использовать и Панель инструментов, и TabLayout с CollapsingToolbarLayout, но я получаю очень странное поведение с макетом вкладки.Идея состоит в том, чтобы TabLayout с прозрачным фоном, когда панель инструментов развернута, а когда она свернута, чтобы быть под панелью инструментов, как и любая другая операция с панели инструментов и TabLayout.

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
  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">

  <com.google.android.material.appbar.AppBarLayout
    android:id="@+id/app_bar_layout"
    android:theme="@style/Theme.MaterialComponents.Light.NoActionBar"
    android:layout_width="match_parent"
    android:layout_height="250dp">

    <com.google.android.material.appbar.CollapsingToolbarLayout
      android:id="@+id/collapsing_toolbar_layout"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      app:layout_scrollFlags="scroll|exitUntilCollapsed"
      app:contentScrim="@color/primary"
      app:expandedTitleTextAppearance="@style/CollapsingToolbarExpandedTitleTheme">

      <ImageView
        android:id="@+id/image"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:contentDescription="@null"
        android:scaleType="centerCrop"
        app:layout_collapseMode="parallax"/>

      <androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="@dimen/toolbar_height"
        app:titleTextAppearance="@style/ToolbarTitleTheme"
        app:layout_collapseMode="pin"/>

      <com.google.android.material.tabs.TabLayout
        android:id="@+id/tab_layout"
        android:layout_width="match_parent"
        android:layout_height="@dimen/toolbar_height"
        android:layout_gravity="bottom">

        <com.google.android.material.tabs.TabItem
          android:layout_width="match_parent"
          android:layout_height="match_parent"/>

        <com.google.android.material.tabs.TabItem
          android:layout_width="match_parent"
          android:layout_height="match_parent"/>

      </com.google.android.material.tabs.TabLayout>

    </com.google.android.material.appbar.CollapsingToolbarLayout>

  </com.google.android.material.appbar.AppBarLayout>

  <androidx.core.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <androidx.viewpager.widget.ViewPager
      android:id="@+id/view_pager"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

  </androidx.core.widget.NestedScrollView>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

enter image description here enter image description here

ОБНОВЛЕНИЕ: Следуя примеру, упомянутому @ ismail alaoui (https://android.jlelse.eu/parallax-scrolling-header-tabs-android-tutorial-2cc6e40aa257), макет лучше, но TabLayout по-прежнему БЕЛЫЙ. Там нет стилясвязан с ним.

enter image description here enter image description here

ОБНОВЛЕНИЕ: Добавление android: background = "transparent" в TabLayout, как @ismail предложил, решает эту проблему.Я также добавил стиль к TabLayout (Widget.MaterialComponents.TabLayout.Colored) только для улучшения макета.

enter image description here enter image description here

1 Ответ

1 голос
/ 26 мая 2019

Я предлагаю вам следовать этому руководству, оно объясняет, как делать то, что вы точно ищете, оно не использует компонент androidx, но вы можете использовать его так же, наслаждайтесь!

edit :

добавить это к атрибуту appBarLayout и TabLayout:

android:background="@android:color/transparent"
...