Попытка использовать новый ExtendedFloatingActionButton
. По умолчанию ExtendedFloatingActionButton
действует не так, как FloatingActionButton
при взаимодействии с CoordinatorLayout
. Смотрите здесь, красный - типичный FloatingActionButton
, а 2 черных - ExtendedFloatingActionButton
с точно такой же настройкой (за исключением цветов и текста). Мне нужно, чтобы черные скрылись так же, как и красный.
Вот схема:
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".ScrollingActivity">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="@dimen/app_bar_height"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.AppBarOverlay">
<com.google.android.material.appbar.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:toolbarId="@+id/toolbar">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
<include layout="@layout/content_scrolling" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
app:layout_anchor="@id/app_bar"
app:layout_anchorGravity="bottom|end"
app:srcCompat="@android:drawable/ic_dialog_email" />
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
android:theme="@style/Theme.MaterialComponents.NoActionBar"
android:id="@+id/exfab1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
app:layout_anchor="@id/app_bar"
app:layout_anchorGravity="bottom|start"
app:strokeColor="#ffff00"
app:strokeWidth="4dp"
app:iconTint="#ffff00"
android:text="txt"
android:textColor="#ffff00"
android:backgroundTint="#000000"
app:icon="@android:drawable/ic_dialog_email" />
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
android:theme="@style/Theme.MaterialComponents.NoActionBar"
android:id="@+id/exfab2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
app:layout_anchor="@id/app_bar"
app:layout_anchorGravity="bottom|center"
app:strokeColor="#ffff00"
app:strokeWidth="4dp"
app:iconTint="#ffff00"
android:textColor="#ffff00"
android:backgroundTint="#000000"
app:icon="@android:drawable/ic_dialog_email" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
Я вижу в источнике что есть вложенный класс ExtendedFloatingActionButton.ExtendedFloatingActionButtonBehavior
и, кажется, он может иметь некоторые свойства, которые могут быть полезны / связаны с этим, такие как autoHideEnabled
и autoShrinkEnabled
, но класс защищен, и я не могу понять, как он предназначен для быть доступным. Пожалуйста, помогите.