mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-04 15:35:19 +00:00
Clean
This commit is contained in:
parent
92acb50ea7
commit
9ab58c2f0c
@ -58,7 +58,6 @@ public enum MaterialColor {
|
|||||||
|
|
||||||
private final String serialized;
|
private final String serialized;
|
||||||
|
|
||||||
|
|
||||||
MaterialColor(@ColorRes int mainColor, @ColorRes int tintColor, @ColorRes int shadeColor, String serialized) {
|
MaterialColor(@ColorRes int mainColor, @ColorRes int tintColor, @ColorRes int shadeColor, String serialized) {
|
||||||
this.mainColor = mainColor;
|
this.mainColor = mainColor;
|
||||||
this.tintColor = tintColor;
|
this.tintColor = tintColor;
|
||||||
@ -110,9 +109,9 @@ public enum MaterialColor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean represents(Context context, int colorValue) {
|
public boolean represents(Context context, int colorValue) {
|
||||||
return context.getResources().getColor(mainColor) == colorValue ||
|
return context.getResources().getColor(mainColor) == colorValue
|
||||||
context.getResources().getColor(tintColor) == colorValue ||
|
|| context.getResources().getColor(tintColor) == colorValue
|
||||||
context.getResources().getColor(shadeColor) == colorValue;
|
|| context.getResources().getColor(shadeColor) == colorValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String serialize() {
|
public String serialize() {
|
||||||
|
@ -1,70 +0,0 @@
|
|||||||
package org.session.libsession.utilities.color;
|
|
||||||
|
|
||||||
import android.content.Context;
|
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
|
||||||
import androidx.annotation.Nullable;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class MaterialColors {
|
|
||||||
|
|
||||||
public static final MaterialColorList CONVERSATION_PALETTE = new MaterialColorList(new ArrayList<>(Arrays.asList(
|
|
||||||
MaterialColor.PLUM,
|
|
||||||
MaterialColor.CRIMSON,
|
|
||||||
MaterialColor.VERMILLION,
|
|
||||||
MaterialColor.VIOLET,
|
|
||||||
MaterialColor.BLUE,
|
|
||||||
MaterialColor.INDIGO,
|
|
||||||
MaterialColor.FOREST,
|
|
||||||
MaterialColor.WINTERGREEN,
|
|
||||||
MaterialColor.TEAL,
|
|
||||||
MaterialColor.BURLAP,
|
|
||||||
MaterialColor.TAUPE,
|
|
||||||
MaterialColor.STEEL
|
|
||||||
)));
|
|
||||||
|
|
||||||
public static class MaterialColorList {
|
|
||||||
|
|
||||||
private final List<MaterialColor> colors;
|
|
||||||
|
|
||||||
private MaterialColorList(List<MaterialColor> colors) {
|
|
||||||
this.colors = colors;
|
|
||||||
}
|
|
||||||
|
|
||||||
public MaterialColor get(int index) {
|
|
||||||
return colors.get(index);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int size() {
|
|
||||||
return colors.size();
|
|
||||||
}
|
|
||||||
|
|
||||||
public @Nullable MaterialColor getByColor(Context context, int colorValue) {
|
|
||||||
for (MaterialColor color : colors) {
|
|
||||||
if (color.represents(context, colorValue)) {
|
|
||||||
return color;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int[] asConversationColorArray(@NonNull Context context) {
|
|
||||||
int[] results = new int[colors.size()];
|
|
||||||
int index = 0;
|
|
||||||
|
|
||||||
for (MaterialColor color : colors) {
|
|
||||||
results[index++] = color.toConversationColor(context);
|
|
||||||
}
|
|
||||||
|
|
||||||
return results;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,12 +1,10 @@
|
|||||||
package org.session.libsession.utilities.color.spans;
|
package org.session.libsession.utilities.color.spans;
|
||||||
|
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import android.text.TextPaint;
|
import android.text.TextPaint;
|
||||||
import android.text.style.MetricAffectingSpan;
|
import android.text.style.MetricAffectingSpan;
|
||||||
|
|
||||||
public class CenterAlignedRelativeSizeSpan extends MetricAffectingSpan {
|
public class CenterAlignedRelativeSizeSpan extends MetricAffectingSpan {
|
||||||
|
|
||||||
private final float relativeSize;
|
private final float relativeSize;
|
||||||
|
|
||||||
public CenterAlignedRelativeSizeSpan(float relativeSize) {
|
public CenterAlignedRelativeSizeSpan(float relativeSize) {
|
||||||
|
Loading…
Reference in New Issue
Block a user