0

我只是想知道如何做这样的事情: 在此处输入图像描述

谢谢

4

2 回答 2

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.

于 2013-02-28T14:38:01.177 回答
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" />
于 2013-02-28T14:41:01.220 回答