Android Context Get getCornerPaint(Context context)

Here you can find the source of getCornerPaint(Context context)

Description

get Corner Paint

Declaration

public static Paint getCornerPaint(Context context) 

Method Source Code

//package com.java2s;

import android.content.Context;

import android.graphics.Paint;

public class Main {
    public static final int DEFAULT_CORNER_COLOR = 0x900099CC;

    public static Paint getCornerPaint(Context context) {
        final Paint cornerPaint = new Paint();
        cornerPaint.setColor(DEFAULT_CORNER_COLOR);
        cornerPaint.setStyle(Paint.Style.FILL);
        cornerPaint.setAntiAlias(true);/*from   w w w . j  a va  2  s . co  m*/
        return cornerPaint;
    }
}

Related

  1. getConnectedType(Context context)
  2. getContactDisplayNameByNumber(Context context, String number)
  3. getContactName(Context ctx, String phoneNumber)
  4. getCornerLightPaint(Context context)
  5. getCornerOffset(Context context)
  6. getCornerRadius(Context context)
  7. getCurProcess(Context context)
  8. getCurrentHome(Context c)
  9. getCurrentLocationByName( Context context)