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

使用链接

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

它将在 textview 下面自动显示行

于 2013-01-18T07:35:55.430 回答