带有TableView的图标菜单(类似于Google+)

时间:2011-10-16 23:17:51

标签: android android-tablelayout

我正在为我的Android应用程序开发基于图标的主菜单(请参阅附图 - Google+)。显而易见的布局是TableLayout。

Google+ Android App

但是,我不知道也无法找到有关如何将表格本身和图标内部居中的信息。我想出的代码如下(结果图像在代码下面):

<TableLayout android:layout_width="fill_parent" android:id="@+id/tableLayout1" android:layout_height="fill_parent" android:stretchColumns="1" android:padding="20dp">
    <TableRow android:id="@+id/tableRow1" android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding="20dp"  >
        <Button android:text="Button" android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center"></Button>
        <Button android:text="Button" android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center"></Button>
    </TableRow>
    <TableRow android:id="@+id/tableRow2" android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding="20dp" >
        <Button android:text="Button" android:id="@+id/button3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" ></Button>
        <Button android:text="Button" android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center"></Button>
    </TableRow>
</TableLayout>

TableLayout

我会感谢任何提示和想法。

2 个答案:

答案 0 :(得分:2)

我刚刚制作了一个你需要的程序主菜单。它与密度无关,但我把它放在一个scrollview上,只是为了确保它可以在任何地方使用。 如果您愿意,可以将按钮更改为图像按钮,这样您就可以获得所需的菜单。

对代码的一点解释:

  • 每行在左侧和右侧都有一个textview作为占位符。 tablelayout'a android:stretchColumns =“0,3”拉伸文本视图以填充按钮旁边的空间。
  • 您可以更改边距,使按钮彼此靠近或远离。

现在这里是xml:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TableLayout android:layout_gravity="center" 
        android:layout_width="match_parent" android:layout_height="match_parent"
        android:stretchColumns="0,3">
        <TableRow android:layout_gravity="center">
            <TextView />
            <Button android:text="1" android:layout_margin="15dp"
                android:layout_gravity="center_vertical"
                android:width="100dip" android:height="100dip" />
            <Button android:layout_gravity="center_vertical" 
                android:text="2" android:layout_margin="15dp"
                android:width="100dip" android:height="100dip" />
            <TextView />
        </TableRow>

        <TableRow android:layout_gravity="center">
            <TextView />
            <Button android:text="3"  android:layout_margin="15dp"
                android:layout_gravity="center_vertical"
                android:width="100dip" android:height="100dip" />
            <Button android:text="4"  android:layout_margin="15dp"
                android:layout_gravity="center_vertical"
                android:width="100dip" android:height="100dip" />
            <TextView />
        </TableRow>

        <TableRow android:layout_gravity="center">
            <TextView />
                <Button android:text="5"  android:layout_margin="15dp"
                android:layout_gravity="center_vertical"
                android:width="100dip" android:height="100dip" />
            <Button android:text="6"  android:layout_margin="15dp"
                android:layout_gravity="center_vertical"
                android:width="100dip" android:height="100dip" />
            <TextView />
        </TableRow>
    </TableLayout>
</ScrollView>

这就是它的样子: http://db.tt/yQ5NFhmk

答案 1 :(得分:0)

android:gravity="center"规范中尝试TableLayout。这会将表格行放在屏幕的中心。

还可以尝试在android:gravity="center"中添加TableRow,以便将按钮放在表格行的中心。