create Left Arrow Path - Android android.graphics

Android examples for android.graphics:Path

Description

create Left Arrow Path

Demo Code

import android.graphics.Path;

public class Main {

  public static Path createLeftArrowPath(int aX, int aY, int aWidth, int aHeight) {
    Path path = new Path();

    path.moveTo(aX + aWidth, aY);/*from   w  w w.  j av  a2s.  com*/
    path.lineTo(aX, aY + (aHeight >> 1));
    path.lineTo(aX + aWidth, aY + aHeight);

    return path;
  }

}

Related Tutorials