Possible Duplicate:
Is there an easy way to add a border to the top and bottom of an Android View?
I have a shape rectangle as a background, now what I want to do is for the top and bottom borders to be somewhat transparent or disappear leaving only the left and right borders.
Is this possible? I tried uploading a screenshot but is blocked here in our company. Hope you got the point.
By shape rectangle I mean this example below:
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid
android:color="@android:color/transparent"
/>
<stroke
android:width="1.5dp"
android:color="#8b7d6b"
/>
</shape>