テキストビューの楕円サイズを設定しようとしています。次のコードを使用します。3 つのドットの後の切り捨てられた文字列の最後に「もっと見る」を追加したい。これが同じテキストビューで可能であれば、それは素晴らしいことですが、別のテキストビューで「もっと見る」こともできます。許可される最大行数は 4 です。最初のテキスト ビューの幅を設定しようとしましたが、最初の 3 行の終わりに空白が残りました。下の画像をご覧ください。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/tvReviewDescription"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:maxLines="4"
android:text="I tend to shy away from restaurant chains, but wherever I go, PF Chang's has solidly good food and, like Starbucks, they're reliable. We were staying in Boston for a week and after a long day and blah blah blah blah... "
android:textColor="@color/black"
android:textSize="13dp"
android:maxLength="280"
android:ellipsize="end"/>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/tvReviewDescription"
android:layout_alignParentRight="true"
android:text="@string/label_view_more"
android:textColor="@color/yellow" />
</RelativeLayout>