正如我在问题中提到的那样,将gradle依赖关系更新为24.2.0之后,我的两个布局之间的floatingActionbutton(检查经典示例here)停止了工作.
我已经检查了类似的问题和答案.挖掘之后,我找到了解释原因的答案,请参见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>
解决方法:
layout_anchor仅适用于CoordinatorLayout的直接子代.您需要更改您的layout_anchor以使用其他视图,例如project_detailed_holder.
总结以上是内存溢出为你收集整理的android-渲染问题在两个布局之间使用FloatingActionButton更新到依赖项24.2.0后停止工作全部内容,希望文章能够帮你解决android-渲染问题在两个布局之间使用FloatingActionButton更新到依赖项24.2.0后停止工作所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)