テーブル行とグリッドビューにボタンを追加してタグを生成しようとしていますが、テーブル行を使用してボタンがラップされていません。
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 つのボタンが表示されていることがわかります