comment mettre du texte en vertu de l'affichage de l'image

J'ai écrit xml mais encore cant placer le texte sur le centre de l'écran comme sur l'image.
Je veux mettre le texte à la suite de mon image.
Sur mon xml tout en essayant de mettre du texte sur le centre en vertu de l'image.
mon xml est:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#ffffffff"
    android:gravity="fill" >

    <ViewFlipper
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/flipper"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentBottom="true"
        android:flipInterval="2000" >

        <LinearLayout
            android:id="@+id/Linear"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:baselineAligned="false"
            android:orientation="vertical" >

            <ImageView
                android:id="@+id/imageLabel"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_horizontal"
                android:src="@drawable/logonews" />

            <TextView
                android:id="@+id/textLabel"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/imageLabel"
                android:layout_gravity="center"
                android:singleLine="true"
                android:text="Israel News"
                android:textSize="18sp"
                android:textStyle="bold" />
        </LinearLayout>
    </ViewFlipper>

</RelativeLayout>
résolu votre problème?

OriginalL'auteur Vitaly Menchikovsky | 2012-04-17