シェイプドローブを定義しました。これは線です。TextViewはShape DrawableでdrawableLeft(またはTop、Right、Bottom)を設定できませんか?
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line" >
<stroke android:color="#f00" android:width="2dp"/>
</shape>
この型をTextViewのdrawableBottomで設定しましたが、動作しませんでした。
<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" />
なぜ、どのように動作させることができますか?
あなたのシェイプでストロークに 'android:height'属性を設定しようとしましたか? – SlashG
ストロークに 'android:height'属性がありません – idengpan