图像渲染九个补丁

时间:2011-06-01 09:32:19

标签: android graphics nine-patch

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

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

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

what happens to the image

enter image description here

<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>

1 个答案:

答案 0 :(得分:1)

如果你填充文本的顶部,那么九个补丁就可以工作,因此它位于不会缩放的部分下方。或者,将所有评论截断为适合的合理长度,让人们点击它们来阅读整篇文章。