gpt4 book ai didi

android - 如何在相对布局中的 ImageView 上方添加水平 1px 线?

转载 作者:IT老高 更新时间:2023-10-28 21:41:55 26 4
gpt4 key购买 nike

如何在相对布局中的 ImageView 上方添加一条 1 像素的水平白线?

<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>

最佳答案

只需在您的 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>

关于android - 如何在相对布局中的 ImageView 上方添加水平 1px 线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4432649/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com