我有一个带有自定义布局的列表视图。在布局中我显示了一系列注释。问题是我设置的图像,当评论太长时背景被拉伸。
我知道我可能会使用九个补丁,但问题是它真的有效吗?如果不是我有什么选择?
有人可以推荐最好的处理方法。
<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>
答案 0 :(得分:1)
如果你填充文本的顶部,那么九个补丁就可以工作,因此它位于不会缩放的部分下方。或者,将所有评论截断为适合的合理长度,让人们点击它们来阅读整篇文章。