我有这个布局
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="me.myapplication.ScrollingActivity">
<android.support.design.widget.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">
<android.support.design.widget.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">
<android.support.v7.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"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_scrolling"/>
<android.support.design.widget.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"/>
</android.support.design.widget.CoordinatorLayout>
当我向上和向下滚动时,FAB淡入淡出 - &gt; video
是否可以禁用此淡入淡出动画?
答案 0 :(得分:4)
我找到了: - )
Behavior
的FloatingActionButton
有behavior_autoHide
选项。
问题是我试图在布局xml中设置此选项。但是FloatingActionButton.Behavior
没有读取此选项,因为Android调用了错误的构造函数。
public Behavior() {
super();
mAutoHideEnabled = AUTO_HIDE_DEFAULT;
}
您还必须在布局xml中设置Behavior
。现在Android调用了正确的构造函数,并且读取了behavior_autoHide
标志。
public Behavior(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray a = context.obtainStyledAttributes(attrs,
R.styleable.FloatingActionButton_Behavior_Layout);
mAutoHideEnabled = a.getBoolean(
R.styleable.FloatingActionButton_Behavior_Layout_behavior_autoHide,
AUTO_HIDE_DEFAULT);
a.recycle();
}
布局xml的重要部分应如下所示
<android.support.design.widget.FloatingActionButton
app:behavior_autoHide="false"
app:layout_anchor="@id/appbar"
app:layout_behavior="android.support.design.widget.FloatingActionButton$Behavior"
app:layout_anchorGravity="bottom|right|end"/>
答案 1 :(得分:0)
您可以尝试使用全文搜索:Ctrl + Shift + F查找“FloatingActionButton.Behavior”。此类的后继者定义了FAB的行为,因此您可以删除处理此淡入淡出的行。 如果您没有找到它,请尝试仅查找“行为”,以防它应用于协调器布局而不是直接应用于FAB。