android – line drawable下面没有显示textview

前端之家收集整理的这篇文章主要介绍了android – line drawable下面没有显示textview前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个textview我想在它下面显示一行.我使用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>

我没有收到错误.只是当我运行我的应用程序时,textview下面没有显示任何行.

有一个误解的drawableBottom属性?期待一些帮助:)

解决方法

试试这个 :
<?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>
原文链接:https://www.f2er.com/android/316763.html

猜你在找的Android相关文章