更改旧版GridLayout中位置的方法

时间:2019-06-11 17:33:50

标签: java android

我有一个带有4个按钮的GridLayout。我想更改GridLayout中Button的位置(例如,从第0行/第0列更改为第1行/第1列)。 Java中有一种方法可以做到吗?

我已经尝试过更改按钮的ID,但是没有用。

my gui

<android.support.v7.widget.GridLayout
        android:id="@+id/grdlyt"
        android:layout_width="395dp"
        android:layout_height="182dp"
        android:layout_marginStart="8dp"
        android:layout_marginLeft="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginBottom="8dp"
        android:visibility="gone"
        app:columnCount="2"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:rowCount="2">

        <Button
            android:id="@+id/button_f1_a1"
            android:layout_width="202dp"
            android:layout_height="88dp"
            android:onClick="f1a1Clicked"
            android:text="Affalterbach"
            android:visibility="visible"
            app:layout_column="0"
            app:layout_row="0" />

0 个答案:

没有答案