android textview pas d'emballage correctement

J'ai le code xml suivant pour afficher les lignes dans une liste. Je veux le TextView avec l'id rowCreatedAt, pour envelopper joliment, mais elle ne le fait jamais et ne montre que la 1 ligne. J'ai essayé la plupart des solutions dans les autres questions et les ajouter dans le code, mais ça ne fonctionne toujours pas. Quelqu'un peut me dire pourquoi...?

+Je voudrais éviter de définir la taille exacte de l'textview.

++ Pour le mettre différemment, pourquoi ne le rowCreatedAt textView n'est pas le texte à la ligne lors de la largeur/hauteur est définie à fill_parent tandis que d'autres textViews envelopper textes bien?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_margin="5dp"
    android:layout_marginBottom="5dp" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <ImageView
            android:id="@+id/rowUserImage"
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:src="@drawable/twitter_icon" 
            android:layout_margin="5dp"/>

        <TextView
            android:id="@+id/rowCreatedAt"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:textSize="10dp"
            android:textColor="#ff696969"
            android:ellipsize="none"
            android:singleLine="false"
            android:scrollHorizontally="false"
            android:layout_weight="1"
            android:maxLines="100"
            android:text="aaaaaaaaaaaaaaabbbbbbbbbbbbbb" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/rowUserName"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:text="username"
            android:textAppearance="?android:attr/textAppearanceMedium" />

        <TextView
            android:id="@+id/rowText"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:text="status text" />
    </LinearLayout>

</LinearLayout>
Découvrez ma réponse.
double possible de Android TextView Texte ne s'enroulent

OriginalL'auteur amor0624 | 2013-12-10