Thursday, 29 August 2013

how to show dash linebelow text view

how to show dash linebelow text view

thisis my code below which show dash line on center of textview i want to
show below the textview see image http://imgur.com/0PB2F2D is show
centerof text view how i change this to show beloe the textview dash line
<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/apprentTemp"
android:textColor="#000000"
android:background="@drawable/dotted"
android:paddingLeft="10dp"
android:gravity="left"
/>
<TextView
android:id="@+id/localTime"
android:textColor="#000000"
android:background="@drawable/dotted"
android:gravity="center"
/>
</TableRow>
<---- dashed.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke
android:color="#000000"
android:dashWidth="5px"
android:dashGap="5px" />
</shape>

No comments:

Post a Comment