TextView Multiline com largura "wrap_content"

Eu estou querendo saber como ter umTextView exibir seu conteúdo em várias linhassem codificar a largura no XML.

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="right"
        android:orientation="horizontal">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:singleLine="false"
            android:text="Long multiline text"/>

        <TextView
            android:textColor="@color/text_color"
            android:layout_width="130dp"
            android:layout_height="wrap_content"
            />

    </LinearLayout>

Qualquer pensamento bem-vindo.

EDITAR: meu problema é que quando o texto excede a largura definida (porque atinge o final da tela) uma parte do texto simplesmente não é exibida. Eu esperaria que o texto fosse dividido em duas linhas

questionAnswers(3)

yourAnswerToTheQuestion