¿Hay alguna manera de definir una parte superior e inferior de carrera de un gradiente, o crear una forma compuesta estirable ?:¿Rectángulo de forma dibujable, especifique los colores de trazo superior e inferior?
// option1:
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#f00"
android:endColor="#0f0"
/>
<stroke
top=1dip, yellow
bottom=1dip, purple
/>
</shape>
// option2
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<shape
android:shape="rectangle"
height=1dip, color=yellow />
<gradient
android:startColor="#f00"
android:endColor="#0f0"
/>
<shape
android:shape="rectangle"
height=1dip, color=purple />
</shape>
No creo que sea son posibles?
Gracias
ver esto: http://stackoverflow.com/questions/1598119/is-there-an-easy-way-to-add- a-border-to-the-top-and-bottom-of-an-android-view – Kenumir