Как добавить горизонтальную линию 1px над изображением в относительном макете?
Как добавить горизонтальную 1px белую линию над представлением изображения в относительном макете?
<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>
Ответы
Ответ 1
Просто добавьте следующую строку в свой XML, где бы вы ни захотели.
<View android:background="#ffffff"
android:layout_width = "match_parent"
android:layout_height="1dp"/>
Изменить: Попробуйте следующее:
<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>
Ответ 2
Рассмотрим перемещение макета линии в отдельный файл:
<!-- horizontal_line.xml -->
<?xml version="1.0" encoding="utf-8"?>
<View
style="@style/HorizontalLine" />
... ссылка на определение пользовательского стиля:
<!-- styles.xml -->
<style name="HorizontalLine">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">@dimen/horizontal_line_height</item>
<item name="android:background">@color/horizontal_line_fill_color</item>
<item name="android:layout_marginTop">@dimen/large_spacer</item>
<item name="android:layout_marginBottom">@dimen/large_spacer</item>
</style>
... а затем вы можете include
его в своем макете:
<RelativeLayout
android:id="@+id/widget38"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="108px"
android:layout_y="87px" >
<include
android:id="@+id/horizontal_line"
layout="@layout/horizontal_line" />
<ImageView
android:id="@+id/widget39"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/horizontal_line"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true" />
</RelativeLayout>