Question

I want to have a shape element with a two color border outline. I can do a single color outline using the solid element, but this only allows me to draw a single line. I tried using two stroke elements within my shape, but that didn't work either.

Is there a way to either draw a shape within a shape or draw two lines around my shape (which has rounded corners, BTW).

Was it helpful?

Solution

I found that the <layer-list> is the best approach. Like this:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:left="6dp"
        android:right="6dp">
        <shape xmlns:android="http://schemas.android.com/apk/res/android"
            android:shape="rectangle">
            <stroke
                android:width="3dp"
                android:color="#000000" />
        </shape>
    </item>
    <item
        android:bottom="1dp"
        android:left="8dp"
        android:right="8dp"
        android:top="1dp">
        <shape xmlns:android="http://schemas.android.com/apk/res/android"
            android:shape="rectangle">
            <corners
                android:bottomLeftRadius="2dp"
                android:bottomRightRadius="2dp"
                android:topLeftRadius="2dp"
                android:topRightRadius="2dp" />
            <solid android:color="@android:color/white" />

            <stroke
                android:width="1dp"
                android:color="#BDBDBD" />
        </shape>
    </item>
</layer-list>

You then need to put the proper margins on your listView row layout, but it works quite nicely.

OTHER TIPS

so i have a work around but its ugly. the work around is to wrap my element inside another container element. i.e.

<RelativeLayout ... android:background="@drawable/outer"> <ListView ... android:background="@drawable/inner" /> </RelativeLayout>

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top