-2

I don't need a solid line of drawings. I just need how to draw a line with mixed color or multi color in Android.

Sudheesh R
  • 1,624
  • 2
  • 17
  • 39
cheezee
  • 3
  • 1

1 Answers1

0

try this one

multicolor.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<gradient 
android:type="linear"
android:centerX="44%" 
android:startColor="#FF00ff00" 
android:centerColor="#FFFF0000" 
android:endColor="#FFffff00" 
android:angle="90"/>
</shape>

line.xml

<View
        android:layout_width="match_parent"
        android:layout_height="5dp"
        android:background="@drawable/multicolor" />
Aniruddh Parihar
  • 2,524
  • 1
  • 16
  • 32