0

テーブル行とグリッドビューにボタンを追加してタグを生成しようとしていますが、テーブル行を使用してボタンがラップされていません。

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>

ここに画像の説明を入力

スクリーンショットでは、上部のレイアウトがグリッドビューで、下部のレイアウトがタブローであることがわかります

テーブル行には 10 個のボタンがありますが、スクリーン ショットに示されているように、グリッドビューに似た 5 つのボタンが表示されていることがわかります

4

1 に答える 1

0

tablelayout 用に 2 つのテーブル行を作成するか、weight を使用してみてください

<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>

于 2013-11-13T06:57:39.200 に答える