菊池製作所さんでペン型のインクジェットプリンターがあることを知りました。
なかなかキニナル製品です。
思わずほしくなっているのですが、
どこで売っているのかはよくわかりません。
そして実際に手に入れたとして何に使えばよいのかもわからないのですが
キニナルのです。
Intent intent = new Intent(android.content.Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "ぎょぎょ");
try {
startActivity(intent);
} catch(android.content.ActivityNotFoundException e) {
Log.d( "intent_test", "cant send" );
}