Android:如何以编程方式设置浮动操作按钮的重力?

问题描述 投票:1回答:1

我想以编程方式将浮动操作按钮的位置移动到某个片段中的某个位置,因为有时浮动操作会覆盖该片段的重要内容。我在活动中获得了浮动操作按钮的引用并将其存储在静态变量中。我正在尝试在片段的onResume方法中更改其重力。正如您在图像中看到的那样,fab正在覆盖y轴,所以我想将它移动到END。 Image for the reference

片段的onResume方法中的代码(不工作):

override fun onResume() {
    super.onResume()
    val params : CoordinatorLayout.LayoutParams = BaseActivity.fab!!.layoutParams as CoordinatorLayout.LayoutParams
    params.anchorGravity = GravityCompat.END
    BaseActivity.fab!!.layoutParams = params
}

主要活动的XML文件

<?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"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.example.mandar.hackerthon_app.Activities.BaseActivity"
    tools:showIn="@layout/app_bar_base">

    <FrameLayout
        android:id="@+id/frameBaseFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"></FrameLayout>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"

        android:layout_margin="20dp"
        android:scaleType="center"
        android:elevation="10dp"
        app:backgroundTint="@color/common_google_signin_btn_text_dark_default"
        app:srcCompat="@mipmap/ic_connection_on_round" />

</android.support.design.widget.CoordinatorLayout>
android kotlin floating-action-button
1个回答
0
投票

在XML文件中,为app:layout_anchor添加FloatingActionButton属性,因为只有在指定锚点视图时才会考虑layout_anchorGravity

在你的情况下,这个锚可能是@id/frameBaseFragment。请注意,如果要将FloatingActionButton移动到其CoordinatorLayout父级的底端,则可以改为更改layoutGravity的值。

此外,强烈建议不要在静态变量中存储对视图的引用,因为它会阻止关联的Activity被垃圾收集,从而导致巨大的内存泄漏。这也可能是您的问题的原因。

© www.soinside.com 2019 - 2024. All rights reserved.