我的两个片段布局中有浮动动作按钮,有时它们会移动到错误的位置,尽管我使用的是CoordinatorLayout。
This is how it somtetimes look when i open the Fragment
这是我片段的代码:
Transaction::select('*')->currency('GBP')
有没有人知道为什么FAB有时会移到错误的位置?
答案 0 :(得分:8)
我遇到了同样的问题。问题在于app:layout_anchor
和com.android.support.design:24.2.0+
我能够通过从fab删除app:layout_anchor
属性或恢复到旧版本的设计库来解决此问题。 24.1.1
对我来说很好。我还必须将appcompat v7
库还原为24.1.1
。
我希望这会有所帮助。
答案 1 :(得分:6)
尝试FAB
CoordinatorLayout
<android.support.design.widget.CoordinatorLayout
android:id="@+id/main_content"
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">
<android.support.design.widget.FloatingActionButton
.../>
<android.support.v7.widget.RecyclerView
.../>
</android.support.design.widget.CoordinatorLayout>
答案 2 :(得分:2)
CoordinatorLayout.LayoutParams
类具有anchorGravity
字段。例如:
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
CoordinatorLayout.LayoutParams lp = (CoordinatorLayout.LayoutParams) fab.getLayoutParams();
lp.anchorGravity = Gravity.BOTTOM | GravityCompat.START;
fab.setLayoutParams(lp);
答案 3 :(得分:1)
在我的情况下,这是24.2.0及更高版本的支持库中的错误。因此,解决它的唯一方法是使用支持lib v24.1.1构建应用程序。
答案 4 :(得分:1)
试试这个:
<android.support.design.widget.CoordinatorLayout
android:id="@+id/main_content"
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">
<android.support.v7.widget.RecyclerView
android:id="@+id/rvToDoList"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_margin="16dp"
android:src="@mipmap/ic_launcher"
app:layout_anchor="@id/rvToDoList"
app:layout_anchorGravity="bottom|right|end"/>
</android.support.design.widget.CoordinatorLayout>
答案 5 :(得分:0)
这些建议都没有为我工作(降级不是一个选项;将FAB向上移动所以它是第一个让它在Android 14上看不见的孩子;删除layout_anchor会让它一直跳到随机位置)
我改为使用ConstraintLayout在我想要的两个视图之间手动定位FAB。由于我的整个屏幕没有滚动区域,所以工作正常。
要以这种方式定位FAB,请将其顶部和底部约束设置为它应该重叠的上部视图之一的底部,并确保它是ConstraintLayout中的最后一个子视图。
答案 6 :(得分:0)
将FAB放在RelativeLayout中,它对我有用,我使用的是支持库的25.3.1版本