Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.res.ColorStateList;
import android.graphics.drawable.ColorDrawable;
import android.graphics.drawable.RippleDrawable;

public class Main {
    public static RippleDrawable getPressedColorRippleDrawable(int paramInt1, int paramInt2) {
        return new RippleDrawable(getPressedColorSelector(paramInt1, paramInt2),
                getColorDrawableFromColor(paramInt1), null);
    }

    public static ColorStateList getPressedColorSelector(int paramInt1, int paramInt2) {
        return new ColorStateList(new int[][] { { 16842919 }, { 16842908 }, { 16843518 }, new int[0] },
                new int[] { paramInt2, paramInt2, paramInt2, paramInt1 });
    }

    public static ColorDrawable getColorDrawableFromColor(int paramInt) {
        return new ColorDrawable(paramInt);
    }
}