0

在游戏中,我在 FrameLayout 中显示自定义视图和 FAB:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <de.slova.GameView
        android:id="@+id/gameView"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <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="16dp"
        android:layout_marginRight="16dp"
        android:src="@drawable/play_white" />

</FrameLayout>

然而,FAB 显示得太低,并遮挡了底部的浅蓝色条:

截屏

我需要增加layout_marginBottom浅蓝色条的高度(由上面屏幕截图中的红色箭头指示),以便 FAB 向上移动。

我确实知道以像素为单位的条形高度(我的自定义视图的内容由矩阵缩放)并且我认为我知道此操作的正确位置(onSizeChanged我的自定义视图中的方法) - 但我的困难是掌握FAB 的layout_marginBottom价值。

请问如何访问和更改?我努力了:

@Override
protected void onSizeChanged(int w, int h, int oldW, int oldH) {
    super.onSizeChanged(w, h, oldW, oldH);

    int h = mBar.getHeight();

    ViewGroup.LayoutParams params = mFab.getLayoutParams();

    // how to add h to layout_marginBottom here?

    mFab.setLayoutParams(params);
}

顺便说一句dppx如果需要,我确实有两种方法可以在两者之间进行翻译:

public static float px2sp(Context context, float px) {
    float scaledDensity = context.getResources().getDisplayMetrics().scaledDensity;
    return px / scaledDensity;
}

public static float sp2px(Context context, float sp) {
    float scaledDensity = context.getResources().getDisplayMetrics().scaledDensity;
    return sp * scaledDensity;
}
4

1 回答 1

1

Margin 属性是FrameLayout.LayoutParamsClass 的一部分,因此您必须将其转换为FrameLayout.LayoutParams

FrameLayout.LayoutParams param = (FrameLayout.LayoutParams) fab.getLayoutParams();
param.bottomMargin = mBar.getHeight();
fab.setLayoutParams(param);
于 2017-10-07T08:51:12.397 回答