aboutsummaryrefslogtreecommitdiffstats
path: root/src/git/java/de/pixart/messenger/services/EmojiService.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/git/java/de/pixart/messenger/services/EmojiService.java')
-rw-r--r--src/git/java/de/pixart/messenger/services/EmojiService.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/git/java/de/pixart/messenger/services/EmojiService.java b/src/git/java/de/pixart/messenger/services/EmojiService.java
new file mode 100644
index 000000000..f76cf5a4b
--- /dev/null
+++ b/src/git/java/de/pixart/messenger/services/EmojiService.java
@@ -0,0 +1,26 @@
+package de.pixart.messenger.services;
+
+import android.content.Context;
+import android.os.Build;
+
+import androidx.emoji.bundled.BundledEmojiCompatConfig;
+import androidx.emoji.text.EmojiCompat;
+
+public class EmojiService {
+
+ private final Context context;
+
+ public EmojiService(Context context) {
+ this.context = context;
+ }
+
+ public void init(boolean useBundledEmoji) {
+ BundledEmojiCompatConfig config = new BundledEmojiCompatConfig(context);
+ //On recent Androids we assume to have the latest emojis
+ //there are some annoying bugs with emoji compat that make it a safer choice not to use it when possible
+ // a) the text preview has annoying glitches when the cut of text contains emojis (the emoji will be half visible)
+ // b) can trigger a hardware rendering bug https://issuetracker.google.com/issues/67102093
+ config.setReplaceAll(useBundledEmoji && Build.VERSION.SDK_INT < Build.VERSION_CODES.O);
+ EmojiCompat.init(config);
+ }
+} \ No newline at end of file