0
好吧,我有一個非常奇怪的問題,我從來沒有面臨過。所以我有一個內部有2列的tableLayout。這裏是第一個開展活動的結果:從其他活動訪問回來時,Android TextView不居中對齊嗎?
後,我瀏覽到其他活動,回來這個活動,這裏是結果:
這裏是我的代碼:
<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>
任何人都可以告訴我我的代碼有什麼問題嗎?