refactor: remove duplicate function in UiUtils

This commit is contained in:
LucasGGamerM
2023-03-10 16:07:22 -03:00
parent 7460b24fb0
commit c2c5b08659

View File

@@ -1181,14 +1181,6 @@ public class UiUtils{
return !TextUtils.isEmpty(getSystemProperty("ro.build.version.emui")); return !TextUtils.isEmpty(getSystemProperty("ro.build.version.emui"));
} }
public static int alphaBlendColors(int color1, int color2, float alpha) {
float alpha0 = 1f - alpha;
int r = Math.round(((color1 >> 16) & 0xFF) * alpha0 + ((color2 >> 16) & 0xFF) * alpha);
int g = Math.round(((color1 >> 8) & 0xFF) * alpha0 + ((color2 >> 8) & 0xFF) * alpha);
int b = Math.round((color1 & 0xFF) * alpha0 + (color2 & 0xFF) * alpha);
return 0xFF000000 | (r << 16) | (g << 8) | b;
}
public static boolean pickAccountForCompose(Activity activity, String accountID, String prefilledText) { public static boolean pickAccountForCompose(Activity activity, String accountID, String prefilledText) {
Bundle args = new Bundle(); Bundle args = new Bundle();
if (prefilledText != null) args.putString("prefilledText", prefilledText); if (prefilledText != null) args.putString("prefilledText", prefilledText);