3

線形レイアウト内で、レイアウトサイズ全体(幅/高さ)を埋める透明なボタンでいくつかのテキストビューをオーバーレイする必要があります。親のレイアウトプロパティを一致させてみましたが、機能しません。ご協力ありがとうございました。

<LinearLayout
                android:id="@+id/layout1"
                android:layout_width="38dp"
                android:layout_height="match_parent"
                android:gravity="bottom"
                android:orientation="vertical" >

                <TextView
                    android:id="@+id/TVBlack"
                    android:layout_width="28dp"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center|bottom"
                    android:background="@color/black"
                    android:text="test"
                    android:textColor="@color/white" />

                <TextView
                    android:id="@+id/TVWhite"
                    android:layout_width="28dp"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center|bottom"
                    android:text="test"
                    android:textColor="@color/black" />

                <Button
                    android:id="@+id/button1"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:background="@null"
                    android:text="Button" />

            </LinearLayout>
4

1 に答える 1

3

あなたがしようとしていることは、線形レイアウトでは不可能です。オブジェクトを互いに重ねることはできません。オブジェクトを宣言された順序で並べて配置するだけです。説明したことを達成するには、 a を使用する必要がありFrameLayoutます。こちらのドキュメントを参照してください。

http://developer.android.com/reference/android/widget/FrameLayout.html

于 2012-04-23T09:40:14.770 に答える