使用 Wea​​rableDrawerLayout 时如何使元素垂直居中?

How to vertically center an element when using WearableDrawerLayout?

我正在使用 WearableDrawerLayout,并在带有下巴的模拟器上进行测试。我想让一个元素垂直居中。相反,我看到的是该元素位于 "the screen minus the chin" 区域的中心 - 即它向屏幕顶部移动了一点。

我看到的:

我应该看到的:

从我在 WearableDrawerLayout 的(非 public?)来源中可以看出,我认为这是由于这一点:

public WindowInsets onApplyWindowInsets(WindowInsets insets) {
    this.mSystemWindowInsetBottom = insets.getSystemWindowInsetBottom();
    if(this.mSystemWindowInsetBottom != 0) {
        MarginLayoutParams layoutParams = (MarginLayoutParams)this.getLayoutParams();
        layoutParams.bottomMargin = this.mSystemWindowInsetBottom;
        this.setLayoutParams(layoutParams);
    }

    return super.onApplyWindowInsets(insets);
}

我该怎么做才能避免这个问题?

编辑: 这里是演示该问题的另一个布局示例:

如您所见,下巴不包含在可用区域中,这意味着 BoxInsetLayout 的高度小于应有的高度。因此,它的按钮子项太 "high" - 它们未底部对齐。

这是我的编辑(抱歉我的 Gimp 技能),它显示了圆形显示,以及 BoxInsetLayout 和按钮应该放在哪里。

有几种方法可以做到这一点。这是一个简单快捷的方法...

首先,我用于测试的布局:

<android.support.wearable.view.BoxInsetLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/box">
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        >
        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/close_button"
            android:layout_centerInParent="true"
            android:background="#0000"/>
    </RelativeLayout>
</android.support.wearable.view.BoxInsetLayout>

这是一个基于 BoxInsetLayout 的最小示例,但原理应扩展到更复杂的布局。我只是使用 RelativeLayout 来轻松地在屏幕中居中,drawable/close_button 只是我坐在周围的一个漂亮的圆形图形。

照原样,上述布局应在任何正方形或全圆形屏幕中居中:

为了将它也置于 "flat tire" 屏幕的中心,我们只需要稍微调整一下根布局。这是我的 Java 代码:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_main);

    DisplayMetrics metrics = getResources().getDisplayMetrics();
    findViewById(R.id.box).getLayoutParams().height = metrics.widthPixels;
}

这很粗糙但很有效:将 BoxInsetLayoutheight 设置为等于屏幕的宽度。然后布局将在该高度内居中。在 "flat tire" 屏幕上:

当然,您需要在布局底部留出足够的空间,以免您的内容被裁剪,但对于底部区域为 "missing" 的屏幕来说,这是不可避免的。如果您有任何使用 android:layout_alignBottom 的元素,您可能需要手动补偿它们的位置,或寻找其他方式来定位它们。

您可以使用 ConstraintLayout 创建方形布局。

本质上,您将视图的左、右和上边缘限制在屏幕边缘。然后,您将视图的维度比率限制为 1:1。 layout会满足你的left/right/top约束,然后尽量满足纵横比约束,只能往下移动。所以,你有一个方形布局。

例如,

<android.support.constraint.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <View
        android:id="@+id/your_view"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintDimensionRatio="1:1" />
</android.support.constraint.ConstraintLayout>