7

その下に線を表示したいテキストビューがあります。これを行うためにdrawableBottom属性を使用しています。これが私のコードです

<TextView
 android:id="@+id/total"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:gravity="right"
 android:text="TextView" 
 android:drawableBottom="@drawable/dividerline"/>

これが私のdividerline.xmlです

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line">

    <stroke
        android:width="70dp"
        android:color="@android:color/black"
        />
    <size
        android:height="1dp"
     />
    <solid
        android:color="@android:color/black"
    />

</shape>

エラーが発生していません。アプリを実行すると、テキストビューの下に行が表示されません。

誤解されているdrawableBottom属性がありますか?いくつかの助けを楽しみにしています:)

4

2 に答える 2

16

これを試して :

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >

    <size
        android:height="1dp"
        android:width="70dp" />

    <solid android:color="@android:color/black" />

</shape>
于 2013-01-18T07:46:58.723 に答える
-3

Linkifyを使う

phone_no.setText("1222446");
Linkify.addLinks(phone_no, Linkify.ALL);

テキストビューの下に自動的に行が表示されます

于 2013-01-18T07:35:55.430 に答える