我有一個textview,我想在下面顯示一行。我正在使用drawableBottom屬性來執行此操作。這裏是我的代碼在textview下面繪製的線條不顯示
<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屬性?期待一些幫助:)
見[這裏](HTTP://計算器.com/questions/10020466/android-4-0-sub-title-section-label-styling)post for same issue –
@arjukhan查看我發佈的解決方案。 –
thanksρяσѕρєяK works gr8 – arjukhan