如何在布局中添加一条线以连接视图,如下所示?

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

最佳答案

您可以通过很多方式做到这一点。只需尝试以下方法即可。您可以在线条下方应用图像。您还可以根据需要设置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 - 穿过 View 的android布局中的垂直线,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32181471/

10-09 07:11