对不起我的英文
我有一个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>
我想用点分开这两个元素。像那样:
TextView9 ...................................... TextView10
其他文字更长................................... 69
答案 0 :(得分:0)
没有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>
view.xml用:
<View
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/dotted" />
还设置:
view.setLayerType(View.LAYER_TYPE_SOFTWARE, null);