1

我是 XML 新手,我一直在搞乱 XML,但无法实现我想要的外观。我想根据手机宽度创建一个方形布局。例如手机的宽度是 768X1280,如何在屏幕顶部设置 768x768(完美正方形)的布局,而将其余空间留给按钮和其他东西?

4

2 回答 2

1

您可以动态制作(在 onCreate 方法中)

Display display = getWindowManager().getDefaultDisplay();

        ActualLayoutWidth = display.getWidth();

params = new LinearLayout.LayoutParams(ActualLayoutWidth ,
                ActualLayoutWidth );

        yourLayout.setLayoutParams(params);
于 2013-08-26T17:04:22.417 回答
0

您可以使用约束布局来获得完美的正方形

<android.support.constraint.ConstraintLayout
    android:id="@+id/ll_second"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/main_second"
    android:layout_marginStart="20dp"
    android:layout_marginEnd="20dp"
    android:layout_marginBottom="10dp"
    android:orientation="horizontal">

    <FrameLayout
        android:id="@+id/f1"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginEnd="5dp"
        android:background="@android:color/black"
        app:layout_constraintDimensionRatio="H,1:1"
        app:layout_constraintEnd_toStartOf="@+id/f2"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

    </FrameLayout>

    <FrameLayout
        android:id="@+id/f2"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginStart="5dp"
        android:background="@android:color/black"
        app:layout_constraintDimensionRatio="H,1:1"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toEndOf="@+id/f1">
    </FrameLayout>
</android.support.constraint.ConstraintLayout>
于 2019-03-08T13:13:05.297 回答