このエントリーをはてなブックマークに追加

2010年3月22日月曜日

Emoji

[In English]
Do you know emoji?
Emoji is very popular in Japan especially among young women.
It's mainly used in e-mails in order to supplement emotion or decorate e-mails.

Now this time, I'm going to introduce the way to use emoji in android devices.
As a prerequisite to use emoji, the devices need to support emoji.
The android devices that are sold in Japan have the prerequisite, but the Android Emulator or Dev Phone does not.

And all you need to do is add the code below.

EditText editText = (EditText)findViewById(R.id.edit);
Bundle bundle = editText.getInputExtras(true);
if (bundle != null) {
bundle.putBoolean("allowEmoji", true);
}


That's it.

If you use EditText in your application, EditText would come in handy for Japanese by adding the code above. So let's give it a try.



[In Japanese]
絵文字という単語を知ってますか?
絵文字は感情を補完したり、メールを華やかにする為に用いられ、若い女性を中心に日本ではとても人気があります。

今回は、Android端末で絵文字を使用する方法をご紹介します。
まず前提条件として、その端末が絵文字をサポートしている必要があります。日本で販売されているAndroid端末ではサポートされていますが、開発者が使用するAndroidエミュレーターやDev Phoneなどではサポートされていません。

実装的には以下のコードを追加するだけです。

EditText editText = (EditText)findViewById(R.id.edit);
Bundle bundle = editText.getInputExtras(true);
if (bundle != null) {
bundle.putBoolean("allowEmoji", true);
}


アプリケーション内でEditTextを使用する場合は、上記のコードを追加するだけで、日本人にとっては非常に使い勝手が良くなります。ぜひ試してみて下さい。

0 件のコメント:

コメントを投稿