如何在一些线性布局之间画线?

时间:2015-04-20 19:11:30

标签: android

我想创建一个如下图所示的布局。

我有四个线性布局,我想用与图片相同的黑线将它们分开。

我该如何创建?

enter image description here

2 个答案:

答案 0 :(得分:4)

在水平布局之间添加

<View
android:layout_width="5dp"
android:layout_height=“match_parent”
android:paddingTop=“16dp”
android:paddingBottom=“16dp"
android:background=“@android:color/black”/>

这是你们之间的垂直

<View
android:layout_width=“match_parent"
android:layout_height=“5dp”
android:paddingRight=“16dp”
android:paddingLeft=“16dp"
android:background=“@android:color/black”/>

你需要添加两次,因为你有四个布局,因此有四个分隔线。

答案 1 :(得分:2)

如果你只想用布局来做,你可以制作一个框架布局,分层布局,然后有两个垂直和水平布局,然后添加你的布局。我想这可能是你正在寻找的,因为这将把线条叠加在你的其他观点之上。

example from xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">

<FrameLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <YOUR LAYOUT HERE/>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="horizontal">

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1">

            <View
                android:layout_width="fill_parent"
                android:layout_height="5dp"
                android:layout_gravity="center_vertical"
                android:layout_margin="40dp"
                android:background="#ff000000" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1">

            <View
                android:layout_width="fill_parent"
                android:layout_height="5dp"
                android:layout_gravity="center_vertical"
                android:layout_margin="40dp"
                android:background="#ff000000" />
        </LinearLayout>
    </LinearLayout>


    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical">

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:gravity="center_horizontal">

            <View
                android:layout_width="5dp"
                android:layout_height="fill_parent"
                android:layout_margin="40dp"
                android:background="#ff000000" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:gravity="center_horizontal">

            <View
                android:layout_width="5dp"
                android:layout_height="fill_parent"
                android:layout_margin="40dp"
                android:background="#ff000000" />
        </LinearLayout>
    </LinearLayout>
</FrameLayout>