Android 1.6(Donut)

PDK

http://pdk.android.com/online-pdk/guide/index.htmlAndroid Platform Developer's GuideWelcome to the Android Platform Dev Guide! This guide provides an under-the-hood introduction to the Android platform, and is designed for platform develop…

protected-broadcast

1.6のgitコミット差分を見ていたら、Broadcastの一部がSystemからしかSendできないようになっていた。確かにこれまではウソのシステム通知が可能で、自作アプリからぼんぼんシステムエラーを起こすことができた。それがAndroidの思想かと思っていたが、やは…

Broadcastのウソ通知

Broadcastは自作アプリからでもウソのシステム通知が可能である。例えば、以下のようにBroadcastを送信するだけで、バッテリー残量が無い!とシステムは警告ポップアップを表示する。 Intent intent = new Intent( "android.intent.action.BATTERY_CHANGED" …

Toast(トースト)を使う

http://developer.android.com/reference/android/widget/Toast.html import android.widget.Toast;String str = "Hello!!!"; Toast.makeText( this, str, Toast.LENGTH_LONG ).show(); TimeDetails LENGTH_LONGShow the view or text notification for a lo…

Permission 一覧

特定のメソッドをコールするためだったり、特定のアクティビティを起動するためだったりと、Androidではパーミッションがよく利用されている。各パーミッションには”保護レベル”という概念が存在し、そのレベルに応じてパーミッションの適用範囲が異なってく…

restartPackage

●Format public void restartPackage(String packageName) ●Details Have the system perform a force stop of everything associated with the given application package. All processes that share its uid will be killed, all services it has running …

Intent flags

Activity起動時、期待する動作を実現する為に、以下のフラグを設定する場合がある。 Intent i = new Intent(); i.setFlags( Intent.FLAG_ACTIVITY_NEW_TASK ); startActivity( i );http://developer.android.com/reference/android/content/Intent.html # Fl…

Broadcast Intent 一覧

Broadcast Intent(ブロードキャスト・インテント): この Intent は複数の Activity に通知される。例えば、バッテリー残量に変化があった場合、Android は Broadcast Intent を用いて複数の Activity に対しバッテリー残量変化を通知する。各 Activity は…