J'ai la disposition de base suivante
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/title_bar_background">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:textAppearance="?android:attr/textAppearanceLarge"
android:padding="10dp"
android:text="HELLO WORLD" />
</LinearLayout>
<LinearLayout>
Il semble que le xml soit correct mais que le texte soit aligné sur la gauche. L'aperçu de texte occupe toute la largeur du parent et l'aperçu de texte est réglé pour être centré. Je ne sais pas quel est le problème...
3 votes
Essayez Android:gravity="center" pour votre fenêtre de texte.