0

我有一个带有自定义布局的列表视图。在布局中,我显示了一系列评论。问题是当评论太长时,我设置为背景的图像会被拉伸。

我知道我可能会使用九个补丁,但问题是它真的有用吗?如果没有,我有什么选择?

有人可以推荐最好的处理方法。

图像发生了什么

在此处输入图像描述

<TextView android:id="@+id/txtCommentBody" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="" android:textColor="@color/black" android:paddingTop="25dip" android:paddingLeft="5dip" android:paddingRight="5dip" android:layout_marginTop="10dip" android:background="@drawable/comment_bg"> </TextView>

4

1 回答 1

1

如果您填充文本的顶部,则可以使用九个补丁,使其位于无法缩放的部分下方。或者,将您所有的评论截断到合适的合理长度,然后让人们点击它们来阅读整个内容。

于 2011-06-01T09:38:36.893 回答