Ich habe hier bei SO zahlreiche ähnliche Fragen durchgesehen, aber nichts hilft. Ich habe eine Hierarchie verschiedener verschachtelter Layouts, die alle haben android:layout_width="fill_parent"
, und das innerste Layout hat android:layout_width="wrap_content
- ich muss es in der Mitte (horizontal) ausrichten. Wie mache ich das?
Update :: Ich habe die Ursache des Problems gefunden. Wenn ich das innere LinearLayout in RelativeLayout mit eingefügt habe android:layout_width="fill_parent"
, wird der Inhalt trotzdem umbrochen . Die TableRow füllt jedoch wirklich den Bildschirm.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TableRow >
<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="1"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="2"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
</TableRow>
</TableLayout>
</FrameLayout>
</LinearLayout>
android:layout_gravity="center"
für das Layout, das die TextViews enthält - hilft nicht, es ist immer noch links ausgerichtet. Es wurde auch versucht, die Breite dieses Layouts aufwrap
und einzustellenfill
- kein Unterschied.