Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I add a horizontal 1px white line above image view in a relative layout?

<RelativeLayout
android:id="@+id/widget38"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="108px"
android:layout_y="87px"
>  
<ImageView
android:id="@+id/widget39"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
>  
</ImageView>  
</RelativeLayout>
share|improve this question

1 Answer

up vote 26 down vote accepted

Just add the following line in your XML where ever you want it.

<View android:background="#ffffff" android:layout_width = "fill_parent" android:layout_height="1dip" android:layout_centerVertical ="true" android:layout_above="@id/your_image_view_id"/>

Edit: Try this:

<RelativeLayout
android:id="@+id/widget38"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="108px"
android:layout_y="87px"
>
<View android:id="@+id/separator" 
 android:background="#ffffff" 
 android:layout_width = "fill_parent"
 android:layout_height="1dip"
 android:layout_centerVertical ="true"
 android:layout_alignParentTop="true"/>
<ImageView
 android:id="@+id/widget39"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_below="@id/separator"
 android:layout_alignParentRight="true"
/>  
</RelativeLayout>
share|improve this answer
I added this and it works great, thank you! Except android:layout_above="@id/your_image_view_id" does not work, it constantly gives me an error. So I had to remove this attribute, but the line is hanging somewhere in the middle of the relative layout. – dropsOfJupiter Dec 13 '10 at 22:02
edited my answer – blindstuff Dec 14 '10 at 13:50
thank you :) works – dropsOfJupiter Dec 14 '10 at 18:58
Thank you :) its working fine, saved my time. – Paresh Mayani Feb 24 '11 at 13:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.