0
我正在使用tableLayout來放置按鈕。現在第一個按鈕在我提供的圖片中可見,但是您看不到它旁邊的按鈕。這個按鈕只用於我使用'android:layout_span =「2」'的那個按鈕。因爲我想要那個按鈕佔據該行的2列。但由於某種原因,它然後消失,行(藍色選擇)突然有更高的高度。屏幕上跨度消失的按鈕
有誰知道如何解決這個問題?
activity_main.xml中
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/TableLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${relativePackage}.${activityClass}" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_span="2"
android:text="Button" />
</TableRow>
</TableLayout>