テキストが textview の幅よりも長い場合、2 行目以降は切り取られ、末尾に「...」が追加されます。向きは関係ありません。2 行目の終わりまで、より多くのテキストが表示されるだけです。ここでは、textview XML を示します。
<TextView android:id="@+id/ContentViewerDescription"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:ellipsize="end"
android:maxLines="20"
android:textColor="#999999"
android:layout_marginTop="10px"
android:layout_marginLeft="10px"/>