我已經創建了一個xml虛線,如How do I make a dotted/dashed line in Android?中所述。如果我使用它作爲我的TextView的背景,它會顯示出來。在android中使用xml虛線TextView
<TextView
android:id="@+id/segment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/dotted_lines"
android:gravity="left"
android:text="First segment"
android:textSize="12sp" />
但是,如果我使用它作爲附帶的drawable,它不會顯示出來。
<TextView
android:id="@+id/segment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:drawableBottom="@drawable/dotted_lines"
android:gravity="left"
android:text="First segment"
android:textSize="12sp" />
從本質上講,我一點也不在乎無論哪種方式,不同的是:我需要的虛線出現在TextView的文本的下方。請幫忙。
我想這可能幫助you..http://stackoverflow.com/questions/10020466/android-4-0-sub-title-section-label-styling LQ = 1 –