The code for drawing an arrow with Style: Fill is given below:
paint.setColor(Color.parseColor(\"#bdc0dc\")); paint.setStyle(Style.FILL); canvas.dr
use the code below..
paint.setShader(new LinearGradient(0, 0, 0, getHeight(), Color.BLACK, Color.WHITE, Shader.TileMode.MIRROR)); canvas.drawPath(arrowPath, paint);