好的,我有一个非常奇怪的问题,我以前从未遇到过。所以我有一个 tableLayout,里面有 2 列。这是首次启动活动的结果:
在我导航到其他活动并返回此活动后,结果如下:
这是我的代码:
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" >
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:background="#FF4545"
android:layout_weight="1"
android:padding="10dp"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="1" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="1.1" />
</LinearLayout>
<LinearLayout
android:background="#70FF42"
android:layout_weight="1"
android:padding="10dp"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="2" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="2.1" />
</LinearLayout>
</TableRow>
</TableLayout>
谁能告诉我我的代码有什么问题?