如何将按钮 A 放在按钮 B 下,使 A 的左侧与 B 的中心垂直对齐?

How do I put a button A under button B such that the left side of A is vertically aligned with the center of B?

如何放置一个按钮,该按钮开始时与其上方的另一个按钮的中间垂直对齐?上部按钮的大小可能因屏幕而异。

提前致谢,

这是你需要的吗?

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

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="First button"/>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        android:orientation="horizontal">

        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:visibility="invisible"/>

        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="Second"/>
    </LinearLayout>

</LinearLayout>