2011年5月30日月曜日

Androidアプリの公開手順 - How to release Android application -

このエントリーをはてなブックマークに追加
Android MarketへAndroidアプリを公開する手順をまとめました。

We described the procedure of releasing android application to Android Market.


目次
アプリケーションの登録準備
 ・アイコンの配置
 ・アプリケーション名の設定
 ・AndroidManifest.xmlの設定
   -バージョン(versionCode、versionName)
   -アイコンとラベル(icon、label)
   -アプリケーションが動作する最小のAPI Level(minSdkVersion)
   -機能宣言(uses-feature)
 ・署名
デベロッパーアカウントの登録
アプリケーションの登録
 ・2個以上のスクリーンショット
 ・高解像度アプリケーションアイコン

2011年5月27日金曜日

Chromeでよく使うショートカット - Commonly used shortcuts in Chrome -

このエントリーをはてなブックマークに追加
Chrome使いならこれぐらいのショートカットは使いこなしたいですね。

If you are a Chrome user, you are expected to use the following shortcuts.

2011年5月22日日曜日

Androidアプリ『数独ソルバ』 - Sudoku Solver -

このエントリーをはてなブックマークに追加
Androidアプリ『数独ソルバ』を作成しました。

We produced the Android application program 'Sudoku Solver'.


2011年5月20日金曜日

龍安寺の写真 - Photos of Ryoanji -

このエントリーをはてなブックマークに追加
ちょっと前になりますが、京都の龍安寺に行ってきました。龍安寺の石庭で有名ですね。今日は息抜きの写真展です。

I went to Ryoanji in Kyoto a little before. It's famous for the Ryoanji rock garden. Today is a break photo gallery.



2011年5月18日水曜日

startActivityForResultとonActivityResultとsetResult

このエントリーをはてなブックマークに追加
Activity AからActivity Bを起動し、そのActivity Bの処理結果をActivity Aで受け取りたい時、startActivityForResult、onActivityResultおよびsetResultメソッドを使うと便利です。

It is convenient to use startActivityForResult, onActivityResult, and setResult to launch Activity B from Activity A, and to receive the processing result of the Activity B with Activity A.


2011年5月15日日曜日

倒立振子 - Inverted Pendulum -

このエントリーをはてなブックマークに追加
教育用キットで、倒立振子を組み立ててみました。

We assembled the inverted pendulum with an education kit.


2011年5月10日火曜日

Activityのライフサイクルの確認 - Confirming Activity lifecycle -

このエントリーをはてなブックマークに追加
アクティビティの状態遷移とライフサイクルメソッドを確認しました。

We confirmed activity state transition and lifecycle methods.


2011年5月4日水曜日

MediaPlayerを利用した楽曲の再生 - Playback of music using MediaPlayer class -

このエントリーをはてなブックマークに追加
MediaPlayerクラスはオーディオファイルの再生制御に利用できます。そのクラスを利用して、楽曲の再生、一時停止、停止の機能を実装してみました。

MediaPlayer class can be used to control playback of audio files. We tried coding the function of playback, pause, and stop of music using the class.