正如我在问题中提到的,我在两个布局之间的FloatingActionButton检查经典示例here,在将gradle依赖关系更新为24.2.0后停止工作。
我检查了类似的问题和答案。挖掘后,我找到了解释原因的答案,请参阅here。对于要将FAB放置在布局底部的情况,这些解决方案非常有用。但是,这在两个布局之间不起作用。
很抱歉创建了另一个问题,而不是继续我找到的解决方案中的讨论,但显然,我没有足够的声誉来创建评论。
提前感谢您的时间。
<?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"
tools:context=".Screens.DetailActivity">
<LinearLayout
android:id="@+id/project_detailed_holder"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:transitionName="tMainHolder">
<LinearLayout
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
</FrameLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/article_list_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/article_collection"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:requiresFadingEdge="vertical" />
</LinearLayout>
</LinearLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fabEdit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
android:src="@drawable/ic_mode_edit_black_24dp"
android:tint="@android:color/white"
app:layout_anchor="@id/header"
app:backgroundTint="@color/colorPrimary"
app:elevation="4dp"
app:layout_anchorGravity="bottom|right|end"
android:alpha="0.0"/>
</android.support.design.widget.CoordinatorLayout>
答案 0 :(得分:1)
layout_anchor
仅适用于CoordinatorLayout
的直接子女。您需要更改layout_anchor
以使用其他视图,例如project_detailed_holder
。