【问题标题】:How we can put Floating action button on top of any layout我们如何将浮动操作按钮放在任何布局之上
【发布时间】:2023-03-27 02:40:01
【问题描述】:

我正在对浮动操作按钮进行一些操作。我有一个列表视图并在屏幕底部显示谷歌广告,浮动操作按钮显示在同一位置(底部|结束)。所以操作按钮隐藏了广告。

我想将浮动操作按钮移到广告线性布局上方一点点。

请看图:

我的代码是这样的:

<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

请帮忙。

提前致谢。

【问题讨论】:

    标签: android floating-action-button


    【解决方案1】:

    您应该使用RelativeLayout,而且我们知道,RelativeLayout 中较晚的子代往往会在RelativeLayout 中的较早子代上浮动。

    因此,要让 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>
    

    浮动操作按钮始终位于广告线性布局上方,并且与广告布局大小无关。 希望对您有所帮助。

    【讨论】:

      【解决方案2】:
      <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"
             />
      

      【讨论】:

        【解决方案3】:

        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" />
        

        【讨论】:

          【解决方案4】:

          这两行很重要。

          android:layout_alignParentEnd="true"

          android:layout_alignParentBottom="true"

          【讨论】:

            【解决方案5】:

            添加 55dp 的下边距,即 Admob 横幅的大小

            浮动按钮或封闭布局中的这一行。

            android:layout_marginBottom="55dp

            【讨论】:

              猜你喜欢
              • 1970-01-01
              • 1970-01-01
              • 2016-03-24
              • 1970-01-01
              • 1970-01-01
              • 1970-01-01
              • 2015-09-04
              • 2018-08-10
              • 1970-01-01
              相关资源
              最近更新 更多