国旗表情符号未在中使用国家代码

Country flag emoji not getting using country code in

我想使用国家代码获取国家标志,API 19 to API 28 的所有版本都应该支持它。为此,我搜索了很多并找到了答案,然后我选择了标记为已接受答案的代码。

我正在使用该答案中的代码

 private String localeToEmoji(Locale locale) {
    String countryCode = locale.getCountry();
    Log.v("Asdasdasdasd", countryCode+" ; "+locale.getDisplayCountry());
    int firstLetter = Character.codePointAt(countryCode.toUpperCase(), 0) - 0x41 + 0x1F1E6;
    int secondLetter = Character.codePointAt(countryCode.toUpperCase(), 1) - 0x41 + 0x1F1E6;
    return new String(Character.toChars(firstLetter)) + new String(Character.toChars(secondLetter));
}

我正在使用这个功能,

 Locale current = ConfigurationCompat.getLocales(getResources().getConfiguration()).get(0);
 txt.setText(localeToEmoji(current));

但这在 KitkatLollipop 中不起作用。它只显示国家代码而不是国旗。我现在已经在这两种设备上进行了测试。

那么使用国家代码检索国旗的最佳方法是什么。

高级帮助将不胜感激!

 private String localeToEmoji(Locale locale) {
    String countryCode = locale.getCountry();
    int firstLetter = Character.codePointAt(countryCode, 0) - 0x41 + 0x1F1E6;
    int secondLetter = Character.codePointAt(countryCode, 1) - 0x41 + 0x1F1E6;
    return new String(Character.toChars(firstLetter)) + new String(Character.toChars(secondLetter));

}

这里0x41代表大写A字母,0x1F1E6在Unicode中是REGIONAL INDICATOR SYMBOL LETTER Atable,用的又是toUpper,这可能会出问题

你的代码看起来不错。你要做的,你需要用Emoji Compatibility.

您应该使用以下代码从代码中获取标志,

 public String countryCodeToEmoji(String code) {

    // offset between uppercase ascii and regional indicator symbols
    int OFFSET = 127397;

    // validate code
    if (code == null || code.length() != 2) {
        return "";
    }

    //fix for uk -> gb
    if (code.equalsIgnoreCase("uk")) {
        code = "gb";
    }

    // convert code to uppercase
    code = code.toUpperCase();

    StringBuilder emojiStr = new StringBuilder();

    //loop all characters
    for (int i = 0; i < code.length(); i++) {
        emojiStr.appendCodePoint(code.charAt(i) + OFFSET);
    }

    // return emoji
    return emojiStr.toString();
}

您需要在 build.gradle 文件中添加表情符号依赖项

implementation "com.android.support:support-emoji-bundled:28.0.0"

如果你需要 FontRequest 那么你必须添加下面的依赖

implementation "com.android.support:support-emoji:28.0.0"

现在您必须创建应用程序 class 并使用配置初始化 EmojiCompact

  EmojiCompat.Config config = new BundledEmojiCompatConfig(getApplicationContext());
  EmojiCompat.init(config);

现在使用 androidx.emoji.widget.EmojiTextView 而不是 TextView 并通过

使用该方法
EmojiTextView txt = findViewById(R.id.txt);
txt.setText(countryCodeToEmoji("IN")); // Here you can use country codes.

这将从 API 19 to API 28 开始生效。

大功告成。

@Piyush 更新了答案: (注意我的代码需要大写的国家代码)

build.gradle:

    implementation 'androidx.emoji:emoji-bundled:1.1.0'
    implementation 'androidx.emoji:emoji:1.1.0'

countryToEmojiCode:

object CountryHelper {
    private const val flagsAsciiOffset = 127397
    fun countryToEmojiCode(countryCode: String) = StringBuilder().apply {
        val simCountryIso = if (countryCode == "UK") {
            "GB"
        } else {
            countryCode
        }
        simCountryIso.forEach {
            appendCodePoint(it.toInt() + flagsAsciiOffset)
        }
    }.toString()
}

用法:

val emojiInitializer = EmojiCompat.init(BundledEmojiCompatConfig(requireContext()))

emojiInitializer.registerInitCallback(
        EmojiCompatHelper { initialised: Boolean ->
            if (initialised) {
                val flagEmoji = EmojiCompat.get().process(flagEmojiCode).toString()
            }
        })

表情符号库的初始化回调:

class EmojiCompatHelper(private val initialised: (Boolean) -> Unit): EmojiCompat.InitCallback() {
    override fun onInitialized() {
        super.onInitialized()
        initialised(true)
    }

    override fun onFailed(throwable: Throwable?) {
        super.onFailed(throwable)
        initialised(false)
    }
}