我有一个文本视图。我想在TextView的左侧添加一条“垂直线”以充当分隔符。

有没有办法做到这一点?

谢谢。

最佳答案

您可以尝试自定义Drawable背景。但是,只为您的行创建一个View会更容易:

<View android:layout_width="2dip" android:layout_height="wrap_content" />


然后通过TextViewLinearLayout将其放置在RelativeLayout的左侧。

关于android - 如何设置TextView的左背景,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2671523/

10-12 00:34