带有底部绘图自定义行的Textview

时间:2013-02-28 14:35:50

标签: android textview line customization draw

我只是想知道如何做这样的事情: enter image description here

谢谢

2 个答案:

答案 0 :(得分:0)

drawableBottom设置为TextView,如:

<TextView
      android:id="@+id/my_txt"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:drawableBottom="@drawable/my_drawable" />

my_drawable位于您的资源文件夹中,而这是您想要在TextView下的绿线。

答案 1 :(得分:0)

您可以使用android:drawableBottom="@drawable/YourDrawing"

执行此操作

喜欢以下..

 <TextView
            android:id="@+id/TV"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="23:00"
            android:drawableBottom="@drawable/YourDrawing"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:textColor="@color/blue"
            android:textStyle="bold" />