如何在android中制作一个4x4网格的图像按钮?

时间:2016-09-05 20:11:37

标签: android gridview android-imagebutton

我花了几周时间四处寻找如何做到这一点,并遇到过thisthis等问题,但似乎已经有几年了/我无法理解如何将它应用到我需要的地方。

我想要的只是让我的图像按钮在屏幕上的4x4网格中,每个按钮开始类似的活动,但具有不同的数据。 (它是一种闪存卡类型的东西,但每张卡都会有不同的文字)。看起来这应该很简单,但这是我的第一个Android应用程序,我第一次接触xml和java,我觉得我迷路了。

实施此方法的好方法是什么?我并不特别喜欢做gridView,并且对任何有效的东西都很开放。

有点像这样:

enter image description here

2 个答案:

答案 0 :(得分:2)

您可以使用TableLayout实现它。以下示例。显然你可以将按钮更改为ImageButtons。

      <TableLayout
        android:id="@+id/tableLayout1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:stretchColumns="*">
        <TableRow
            android:id="@+id/tableRow1"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1">
            <Button
                android:id="@+id/button1"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" />
            <Button
                android:id="@+id/button2"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" />
        </TableRow>
        <TableRow
            android:id="@+id/tableRow2"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1">
            <Button
                android:id="@+id/button3"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" />
            <Button
                android:id="@+id/button4"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" />
        </TableRow>
     </TableLayout>

答案 1 :(得分:2)

您可以使用GridView。以下Android文档链接包含有关如何使用它的示例和详细信息。

Android文档: https://developer.android.com/guide/topics/ui/layout/gridview.html

https://developer.android.com/reference/android/widget/GridView.html