如何在相对布局中的图像视图上方添加一条水平 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>
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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需在 XML 中任何需要的位置添加以下行即可。
编辑:试试这个:
Just add the following line in your XML where ever you want it.
Edit: Try this:
考虑将行的布局移动到单独的文件中:
... 引用自定义样式定义:
... 然后您可以将其包含在布局中:
Consider moving the layout for the line into a separate file:
... referencing a custom style definition:
... and then you can
include
it in your layout: