I have the following XML drawable to define the different background color for the states of my buttons:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@android:color/white" android:state_selected="true"></item>
<item android:drawable="@android:color/transparent" android:state_pressed="true"></item>
<item android:drawable="@android:color/transparent"></item>
</selector>
How can I add a white border on the right side of my buttons (slightly less in height than the button itself) to act as a divider?