如何在网格格式中放置图像按钮

时间:2015-03-12 16:02:11

标签: android android-layout

如何安排我的Android UI包含以下给定格式的3个图像按钮。我是android环境的新手,我对该技术的了解是零。请建议我使用下面给出的格式放置图像按钮的最佳方法。

enter image description here

1 个答案:

答案 0 :(得分:2)

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <ImageButton
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="horizontal">

        <ImageButton
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1" />

        <ImageButton
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1" />

    </LinearLayout>

</LinearLayout>