Android Context Get getCornerLightPaint(Context context)

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

Description

get Corner Light Paint

Declaration

public static Paint getCornerLightPaint(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_LIGHT_COLOR = 0x45000000;

    public static Paint getCornerLightPaint(Context context) {
        final Paint cornerPaint = new Paint();
        cornerPaint.setColor(DEFAULT_CORNER_LIGHT_COLOR);
        cornerPaint.setStyle(Paint.Style.FILL);
        cornerPaint.setAntiAlias(true);//from ww  w.ja  va2s .c  om
        return cornerPaint;
    }
}

Related

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