gpt4 book ai didi

android - android布局中的垂直线穿过 View

转载 作者:行者123 更新时间:2023-11-30 01:56:07 25 4
gpt4 key购买 nike

如何在我的布局中添加一条线来连接 View ,如下所示?

https://s-media-cache-ak0.pinimg.com/736x/3b/ec/d2/3becd28fa9f9332f390d88da445e2bc7.jpg

最佳答案

您可以通过多种方式做到这一点。试试下面的方法。您可以在线条下方应用图像。您还可以根据需要设置marginLeft、marginRight等调整。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/AntiqueWhite">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="65dp">
<View
android:layout_width="1dp"
android:layout_height="60dp"
android:layout_marginLeft="50dp"
android:background="@color/Black"/>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="65dp">
<View
android:layout_width="1dp"
android:layout_height="60dp"
android:layout_marginLeft="50dp"
android:background="@color/Black"/>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="65dp">
<View
android:layout_width="1dp"
android:layout_height="60dp"
android:layout_marginLeft="50dp"
android:background="@color/Black"/>
</RelativeLayout>
</LinearLayout>

关于android - android布局中的垂直线穿过 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32181471/

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