我们如何将浮动操作按钮放在任何布局的顶部
How we can put Floating action button on top of any layout
我正在对浮动操作按钮进行一些操作。我有一个列表视图并在屏幕底部显示 google 广告,浮动操作按钮显示在同一位置(底部|末端)。所以操作按钮隐藏了广告。
我想将浮动操作按钮移动到广告线性布局上方一点。
请看图片:
我的代码是这样的:
<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"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_gravity="bottom|end"
android:src="@drawable/fav"
android:adjustViewBounds="false" />
adLayoutId is ad layout id
请帮忙。
提前致谢。
添加 55dp 的底部边距,这是 Admob 横幅的大小
浮动按钮或封闭布局中的这一行。
android:layout_marginBottom="55dp
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_marginBottom="100dp"
android:layout_marginRight="30dp"
/>
您应该使用 RelativeLayout
,正如我们所知,RelativeLayout
中较晚的 children 往往会漂浮在 RelativeLayout
中较早的 children。
因此,要让 FAB 浮动在任何布局之上,请确保在所有视图之后定义 FAB(在 XML 布局的末尾)。
如果您使用 android:layout_margin="@dimen/fab_margin"
操作 FAB 的最佳方式是设置视图之间的依赖关系,例如:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/adLayoutId"/>
<LinearLayout
android:id="@+id/adLayoutId"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:background="@android:color/black"/>
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@id/adLayoutId"
android:layout_alignParentRight="true"
android:layout_margin="@dimen/fab_margin"
android:src="@drawable/fav"/>
</RelativeLayout>
浮动操作按钮始终位于广告线性版式上方,与广告版式尺寸无关。
希望对你有帮助。
这两行很重要。
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
fab 按钮中的这两行帮助我解决了这个问题:
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
这是我单独用于按钮的完整代码:
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab_newStudent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
android:contentDescription="@string/todo"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:srcCompat="@drawable/ic_baseline_add_24" />
我正在对浮动操作按钮进行一些操作。我有一个列表视图并在屏幕底部显示 google 广告,浮动操作按钮显示在同一位置(底部|末端)。所以操作按钮隐藏了广告。
我想将浮动操作按钮移动到广告线性布局上方一点。
请看图片:
我的代码是这样的:
<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"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_gravity="bottom|end"
android:src="@drawable/fav"
android:adjustViewBounds="false" />
adLayoutId is ad layout id
请帮忙。
提前致谢。
添加 55dp 的底部边距,这是 Admob 横幅的大小
浮动按钮或封闭布局中的这一行。
android:layout_marginBottom="55dp
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_marginBottom="100dp"
android:layout_marginRight="30dp"
/>
您应该使用 RelativeLayout
,正如我们所知,RelativeLayout
中较晚的 children 往往会漂浮在 RelativeLayout
中较早的 children。
因此,要让 FAB 浮动在任何布局之上,请确保在所有视图之后定义 FAB(在 XML 布局的末尾)。
如果您使用 android:layout_margin="@dimen/fab_margin"
操作 FAB 的最佳方式是设置视图之间的依赖关系,例如:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/adLayoutId"/>
<LinearLayout
android:id="@+id/adLayoutId"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:background="@android:color/black"/>
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@id/adLayoutId"
android:layout_alignParentRight="true"
android:layout_margin="@dimen/fab_margin"
android:src="@drawable/fav"/>
</RelativeLayout>
浮动操作按钮始终位于广告线性版式上方,与广告版式尺寸无关。 希望对你有帮助。
这两行很重要。
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
fab 按钮中的这两行帮助我解决了这个问题:
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
这是我单独用于按钮的完整代码:
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab_newStudent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
android:contentDescription="@string/todo"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:srcCompat="@drawable/ic_baseline_add_24" />