我正在Android 6.0.1设备上进行测试,问题是我的FAB只对layout_marginRight做出反应而不是layout_marginBottom,无论我使用哪个值。
这是我的布局:
<RelativeLayout 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">
<ScrollView
android:id="@+id/scrollViewUnitNames"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:layout_margin="16dp"
android:fillViewport="true"><!----></ScrollView>
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:layout_margin="@dimen/fab_margin"
android:clickable="true"
android:id="@+id/fab"
android:src="@android:drawable/ic_dialog_email"
app:fabSize="normal"
app:borderWidth="0dp"
/> </RelativeLayout>
因此,如果我将FAB对齐到左上角或右上角,则边距有效。 如果我将它对齐到左下角或右下角,则layout_marginBottom似乎没有效果。 我正在使用设计支持库23.2.0。 我在Android 4.0.3模拟器上进行了测试,但它确实有效。 你有任何想法如何解决这个问题?谢谢!
编辑2 我现在知道了一点:在创建时,我将内容视图设置为空布局(仅内部的相对布局)。经过一些测试后,我改变了这样的布局:
RelativeLayout container = (RelativeLayout) findViewById(R.id.container);
container.removeAllViews();
container.addView(getLayoutInflater().inflate(R.layout.my_layout_file, null));
在一个新项目中,我做了同样的事情,之后我改变了它的工作布局,在我改变它之后,它看起来像上面的图像一样。这是改变布局的一种不正确的方法吗?还是有更好的方法?谢谢你的帮助。
答案 0 :(得分:3)
将FloatingActionButton
的xml更改为以下内容:
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:layout_marginLeft="@dimen/fab_margin"
android:layout_marginTop="@dimen/fab_margin"
android:layout_marginRight="@dimen/fab_margin"
android:layout_marginBottom="50dp"
android:clickable="true"
android:id="@+id/fab"
android:src="@android:drawable/ic_dialog_email"
app:fabSize="normal"
app:borderWidth="0dp"
/>
如果您使用android:layout_margin
和android:layout_marginBottom
,则会覆盖您的下边距。单独定义每个边距将允许您具有与顶部/左/右不同的底部边距。
更新回答:
更改此行:
container.addView(getLayoutInflater().inflate(R.layout.my_layout_file, null));
要
container.addView(getLayoutInflater().inflate(R.layout.my_layout_file, container, false));
它应该纠正FloatingActionButton
上的边距。
答案 1 :(得分:1)
将此视图添加到布局的底部
<View
android:id="@+id/bottomView"
android:layout_width="@dimen/default_16dp"
android:layout_height="bottom margin of the floating action button"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"/>
并在该视图上设置浮动acton按钮
android:layout_above="@id/bottomView"