in my app i have a textview and its below a view(Horizontal line). i need to set width to view which is equal width of text view. i tried android:layout_width="wrap_content" and match parent but it does not solved. That is i need draw horizontal line for the text length(width) equal not to full the screen.
This is xml coding sample:
......
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="28dp"
android:text="PopUpWindow"
android:textAppearance="?android:attr/textAppearanceLarge" />
<View
android:id="@+id/separator"
android:layout_width="wrap_content"
android:layout_height="0.3dp"
android:layout_below="@+id/textView1"
android:background="#ffffff" />
......
image of the screen is:

please help me.
LayoutParams, then apply this width to your horizontal line, also usingLayoutParams. You 'll find lots of examples for setting width in Java. – Sebastien Apr 2 '12 at 13:54