在水平线性布局中使用两个空格将对象放置在屏幕中间

Using two spaces to place an object in the middle of the screen in a horizontal linearlayout

我看到了这个 link 和 bakwarte 的回答。 Center two buttons horizontally

Toni Gamez 说,这是 API >= 14。

例如,我尝试并发现它适用于 10 级。 那么这是否是所有 API 级别的正确方法?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_margin="10dp">
        <Space
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_weight="1" />
        <ImageView
            android:id="@+id/imageView1"
            android:background="@drawable/Icon"
            android:layout_width="100dp"
            android:layout_height="wrap_content" />
        <Space
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_weight="1" />
    </LinearLayout>
</LinearLayout>

Toni Gamez 没有说为什么答案只针对 API >= 14,但这可能是因为 Space 小部件是第一个在 API 14.

中介绍

如果您选择 Space 小部件,此技术将适用于 API 10 和其他 APIs来自支持库或 Androidx。