我试图添加"阅读更多"如果文本长度超过两行,则返回textView的末尾,但我很难这样做...我的TextView如下所示:
<TextView
android:id="@+id/reviewText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:layout_marginLeft="1dp"
android:text=""
android:maxLines="2"
android:ems="3"
android:ellipsize="end"
android:textColor="#FFFFFF" />
如此清晰,现在因为椭圆形而得到三个点,但我真的想要它写#34;阅读更多&#34;。
对我应该怎么做的任何想法我都非常感激!
答案 0 :(得分:0)
尝试添加以下两行:
abdroid:focusable="true"
android:focusableInTouchMode="true"
到TextView