我只是想知道如何做这样的事情:
谢谢
答案 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" />