Android中的Right Drawable。不工作

时间:2011-02-19 06:33:57

标签: android xml user-interface android-layout android-styles

我使用TextView属性在drawableRight旁边画一条线。表中有许多TextView,我想要的只是列分隔符。继承人TextView代码:

<TextView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:text="units"
     android:drawablePadding="2pt"
     android:drawableRight="@drawable/linetable"
     android:gravity="center"
     android:layout_margin="2pt"
     android:padding="2pt" />

Linetable Code

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

       <solid android:color="#000000"></solid>
       <stroke
            android:width="2pt"
            android:color="#000000"
            android:dashWidth="8pt"
            android:dashGap="8pt"/>

</shape>

所以我希望在所有TextViews旁边绘制一个列,这可能看起来像一个列边框。但它没有用。

图像显示了我想要实现的目标以及我所取得的成就。

我只需要指导。谢谢。

The Spinner in the image is what I am trying to make What I have achieved so far

1 个答案:

答案 0 :(得分:1)

您可以使用android-wheel