我有一个包含Textview的RelativeLayout。我希望TextView文本包装在多行上。
它在Android 4.1和4.2上运行良好(没有尝试过早期版本)。但是,在Android 4.3上,文本没有包装并被剪切(参见下面的屏幕截图)。
Layout.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/feed_item"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/touchable_background_msf"
android:padding="@dimen/feed_item_padding" >
<com.binarymango.msfnews.images.RecyclingImageView
android:id="@+id/feed_item_icon"
android:layout_width="@dimen/feed_thumb_width"
android:layout_height="@dimen/feed_thumb_height"
android:contentDescription="Description" />
<TextView
android:id="@+id/feed_item_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/feed_item_icon"
android:layout_alignLeft="@+id/feed_item_icon"
android:layout_alignRight="@+id/feed_item_icon"
android:background="@color/text_background_msf"
android:ellipsize="end"
android:maxLines="3"
android:minLines="2"
android:padding="@dimen/feed_item_text_padding"
android:text="Description"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@color/text_msf" />
</RelativeLayout>
Android 4.2上的结果,文本正确包装在3行中:
但是在Android 4.3上,文字只是剪切:
我一直在尝试使用StackOverflow中其他地方提到的几个属性徒劳:
android:singleLine="false"
android:scrollHorizontally="false"
android:inputType="textMultiLine"
android:width="0dip"
另外,我怀疑它可能与主题有关。我的应用使用Theme.AppCompat.Light
答案 0 :(得分:0)
例如,您可以使用android:line="3"
与第一张图像具有相同的行为。