diff options
author | xC3FFF0E <78732474+xC3FFF0E@users.noreply.github.com> | 2021-02-08 15:20:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-08 15:20:35 +0100 |
commit | 74f1b0e10bf1f9d789991f3d929d3bd4b7f8db91 (patch) | |
tree | d0208a160955628d71344bb49007df8ad4a55340 /AJCode.java | |
parent | Delete a (diff) | |
download | xManager-74f1b0e10bf1f9d789991f3d929d3bd4b7f8db91.tar xManager-74f1b0e10bf1f9d789991f3d929d3bd4b7f8db91.tar.gz xManager-74f1b0e10bf1f9d789991f3d929d3bd4b7f8db91.tar.bz2 xManager-74f1b0e10bf1f9d789991f3d929d3bd4b7f8db91.tar.lz xManager-74f1b0e10bf1f9d789991f3d929d3bd4b7f8db91.tar.xz xManager-74f1b0e10bf1f9d789991f3d929d3bd4b7f8db91.tar.zst xManager-74f1b0e10bf1f9d789991f3d929d3bd4b7f8db91.zip |
Diffstat (limited to 'AJCode.java')
-rw-r--r-- | AJCode.java | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/AJCode.java b/AJCode.java deleted file mode 100644 index 6860b0b..0000000 --- a/AJCode.java +++ /dev/null @@ -1,25 +0,0 @@ -package com.xc3fff0e.xmanager;
-
-import android.graphics.drawable.*;
-import android.view.*;
-import android.widget.*;
-import android.content.res.*;
-import android.graphics.*;
-import android.view.Gravity;
-
-public class AJCode{
-
-public static void setBackgroundGradient(View view, int color1, int color2){
-GradientDrawable gd = new GradientDrawable(GradientDrawable.Orientation.BL_TR, new int[] {color1,color2});
-view.setBackgroundDrawable(gd);
-}
-
-public static void setRoundedRipple(View v,int LT,int RT,int RB,int LB,int color1,int size,int color2,int color3){
-GradientDrawable shape = new GradientDrawable();
-shape.setColor(color1);
-shape.setCornerRadii(new float[]{(float)LT,(float)LT,(float)RT,(float)RT,(float)RB,(float)RB,(float)LB,(float)LB});
-shape.setStroke(size, color2);
-RippleDrawable ripdr = new RippleDrawable(new ColorStateList(new int[][]{new int[]{}}, new int[]{color3}), shape, null);
-v.setBackgroundDrawable(ripdr);
-}
-}
\ No newline at end of file |