单个tablerow中的android多个按钮

时间:2013-11-13 06:46:40

标签: android tags tablerow

我试图通过向表格行和gridview添加按钮来生成标记,但按钮不是使用tablerow进行包装。

xml代码:

  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:id="@+id/l"
   android:orientation="vertical"
    >
 <LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:weightSum="2"
    android:orientation="vertical"
     >
  <LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:layout_weight="1"
    android:orientation="vertical"
     >
 <com.manishkpr.androidtagsexample.CustomGrid
    android:id="@+id/gridView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:horizontalSpacing="3dp"
    android:numColumns="auto_fit"
    android:columnWidth="120dip"
    android:verticalSpacing="3dp" />
  </LinearLayout>
 <LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:layout_weight="1"
    android:orientation="vertical"
     >
   <TableLayout
     android:layout_width="match_parent"
     android:shrinkColumns="0"
     android:layout_height="match_parent" >

  <TableRow
      android:id="@+id/tags"
      android:layout_width="match_parent"
      android:layout_height="match_parent" >
       <Button
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Button" />
        <Button
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Button" />
         <Button
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Button" />
          <Button
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Button" />
           <Button
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Button" />
            <Button
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Button" />
             <Button
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Button" />
              <Button
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Button" />
               <Button
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Button" />
                <Button
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Button" />
  </TableRow>

 </TableLayout>



    </LinearLayout>
  </LinearLayout>
</LinearLayout>

enter image description here

在屏幕截图中,您可以看到顶部布局是gridview,底部布局是tablrow

表格行有10个按钮,但你可以看到它显示我5 我想要的是与屏幕截图所示的gridview相似

1 个答案:

答案 0 :(得分:0)

为tablelayout创建两个表行或尝试使用权重

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/l"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

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

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1"
        android:orientation="vertical" >
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1"
        android:orientation="vertical" >

        <TableLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:shrinkColumns="*" >

            <TableRow
                android:id="@+id/tags"
                android:layout_width="match_parent"
                android:layout_height="match_parent" >

                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Button" />

                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Button" />

                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Button" />

                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Button" />

                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Button" />
            </TableRow>

            <TableRow
                android:id="@+id/tags1"
                android:layout_width="match_parent"
                android:layout_height="match_parent" >

                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Button" />

                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Button" />

                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Button" />

                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Button" />

                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Button" />
            </TableRow>
        </TableLayout>
    </LinearLayout>
</LinearLayout>