Android examples for android.graphics:Path
create Down Triangle Path
import android.graphics.Path; public class Main { public static Path createDownTrianglePath(int aX, int aY, int aWidth, int aHeight) { Path path = new Path(); path.moveTo(aX, aY);/* ww w. jav a2 s .c o m*/ path.lineTo(aX + aWidth, aY); path.lineTo(aX + (aWidth >> 1), aY + aHeight); path.close(); return path; } }