防止将字符绘制为表情符号

时间:2018-06-08 08:39:14

标签: android unicode android-canvas draw emoji

我想使用drawText()在画布上绘制一个unicode角色。

canvas.drawText("\u270c\ufe0e", x, y, paint);

在运行Android 7的测试设备上,它会正确显示:

Correctly drawn character

但是在我的模拟器中,“运行”Android 6,并且在运行Android 6的真实设备上,它被绘制为表情符号,无论\ufe0e

Character drawn as Emoji

这当然是不是我想要的东西,因为我想把它画成黑色而不是粉红色!有没有办法在绘制文本时“关闭”Emojis?

2 个答案:

答案 0 :(得分:1)

您可以尝试使用EmojiCompat库,描述为herehere。将其添加到您的依赖项;

dependencies {
    ...
    implementation "com.android.support:support-emoji:27.1.1"
    implementation "com.android.support:support-emoji-bundled:27.1.1"
    ...
}

初始化库;

EmojiCompat.init(new BundledEmojiCompatConfig(this).setReplaceAll(true));

然后将TextView替换为EmojiTextView。以下是您可以用来测试的示例:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:ignore="HardcodedText">

    <!-- replace -->
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="16sp"
        android:text="TextView - default: \u270c, text: \u270c\ufe0e, emoji: \u270c\ufe0f"/>

    <!-- with -->
    <android.support.text.emoji.widget.EmojiTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="16sp"
        android:text="EmojiTextView - default: \u270c, text: \u270c\ufe0e, emoji: \u270c\ufe0f"/>
</LinearLayout>

如果它不起作用,请从初始化行中删除.setReplaceAll(true),再试一次,看看是否有效。

编辑:

如果您想手动绘制表情符号文字,例如在画布上,您可以使用EmojiCompat.process(...)android.text.StaticLayout来完成。我没有尝试过,所以可能是错误,但它应该有用。

// assuming x, y, and paint are defined
CharSequence emoji = EmojiCompat.get().process("\u270c\ufe0e");
StaticLayout layout = new StaticLayout(emoji, paint, 
    canvas.getWidth(), Layout.Alignment.ALIGN_NORMAL, 1.0f, 0.0f, false);
canvas.translate(x, y);
layout.draw(canvas);
canvas.translate(-x, -y);

答案 1 :(得分:-1)

你可以试试Fontawesome。您无需下载整个库。只是来自网站的ttf文件。它大约是18MB。

https://fontawesome.com/get-started

然后你可以使用备忘单中的字符串来绘制图标。

https://fontawesome.com/cheatsheet

将ttf文件复制到资产文件夹。

Typeface typeface = Typeface.createFromAsset(context.getAssets(),"fontawesome_webfont_4.ttf");
paint.setTypeface(typeface);
canvas.drawText("\uf25b", x, y, paint);

您可以在备忘单中找到\uf25b作为f25b。这是和平的标志。