3

对不起,我的英语

我有一个 RelativeLayout 和 2 个这样的文本视图

<RelativeLayout
            android:layout_width="fill_parent"
            android:layout_weight="1"
            android:layout_height="wrap_content" >

            <TextView
                android:id="@+id/textView9"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_alignParentTop="true"
                android:singleLine="true"
                android:textAppearance="?android:attr/textAppearanceMedium" />

            <TextView
                android:id="@+id/textView10"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_alignParentTop="true"
                android:singleLine="true"
                android:textAppearance="?android:attr/textAppearanceMedium" />

        </RelativeLayout>

我想按点分开这两个元素。像那样:

文本视图 9 ...................... 文本视图 10

其他文本更长.................................................. 69

4

1 回答 1

1

没有java代码:

可绘制/dotted.xml:

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

    <stroke
       android:color="#C7B299"
       android:dashWidth="10px"
       android:dashGap="10px" />
</shape>

视图.xml:

<View
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/dotted" />

并设置:

view.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
于 2013-05-14T19:28:18.343 回答