Ich habe eine Form definiert, es ist eine Linie.TextView kann DrawableLeft (oder Top, Right, Bottom) nicht mit Shape-Zeichen festlegen?
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line" >
<stroke android:color="#f00" android:width="2dp"/>
</shape>
und dann habe ich diese Form in TextView DrawableBottom, aber es hat nicht funktioniert.
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:drawableBottom="@drawable/shape_line"
android:drawablePadding="5dip"
android:text="Hello World" />
warum und wie kann es funktionieren?
Haben Sie versucht, ein Attribut "android: height" für den Strich in Ihrer Form zu setzen? – SlashG
Schlaganfall habe nicht 'Android: Höhe' Attribut – idengpan