我有以下divider我希望做同样的效果但是在垂直方向。我怎么能这样做?
<?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的帮助下得到solution,我没有使用divider 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>
答案 0 :(得分:24)
您可以使用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" />