我有以下分隔线,我想做同样的效果,但垂直。我怎么能这样做?
<?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>