我想使用drawText()
在画布上绘制一个unicode角色。
canvas.drawText("\u270c\ufe0e", x, y, paint);
在运行Android 7的测试设备上,它会正确显示:
但是在我的模拟器中,“运行”Android 6,并且在运行Android 6的真实设备上,它被绘制为表情符号,无论\ufe0e
:
这当然是不是我想要的东西,因为我想把它画成黑色而不是粉红色!有没有办法在绘制文本时“关闭”Emojis?
答案 0 :(得分:1)
您可以尝试使用EmojiCompat库,描述为here和here。将其添加到您的依赖项;
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。这是和平的标志。