4

我有以下分隔线,我想做同样的效果,但垂直。我怎么能这样做?

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:bottom="2dp">
        <shape android:shape="rectangle">
            <gradient
                android:startColor="#0fffffff"
                android:centerColor="#ff696969"
                android:endColor="#0fffffff"
                android:angle="90"></gradient>
            <size android:height="2dp"></size>
        </shape>
    </item>
    <item android:top="2dp">
        <shape android:shape="rectangle">
            <solid android:color="#ffffff"></solid>
            <size android:height="1dp"></size>
        </shape>
    </item>
</layer-list>

我在 Celta 的帮助下得到了解决方案,我没有使用分隔符 xml 并构建自己的 lLinearLayout:

  <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="horizontal">
            <View
            android:layout_width="1dp"
            android:layout_height="fill_parent" 
            android:layout_alignParentLeft="true"
            android:background="#ff696969"></View>
                            <View
            android:layout_width="2dp"
            android:layout_height="fill_parent" 
            android:layout_alignParentLeft="true"
            android:background="#ffffff"></View>
</LinearLayout>
4

1 回答 1

30

你可以使用一个View

水平的:

<View
    android:layout_width="fill_parent"
    android:layout_height="1dp"
    android:background="@android:color/holo_blue_light" />

垂直的:

<View
    android:layout_width="1dp"
    android:layout_height="fill_parent"
    android:background="@android:color/holo_blue_light" />
于 2013-04-26T10:16:44.687 回答