初心者だけどPerlが大好き

コードが世界を変える!

Androidの暗黙的インテントに設定するACTION

復習しています

Intentは、Activityから別のActivityへとデータを受け渡します

Intent intent = new Intent(MainActivity.this, SubActivity.class);
というように

つまり Androidではintentという形式でアクティビティ間の連携を取る。
送り先とパラメータを詰めたIntentクラスを作成し、
それをstartActivityメソッドで送りつける
http://www.次世代創造機構.jp/android/androidLecture/Intent/Intent.html


android.content.Intent intent = new android.content.Intent(android.content.Intent.なんとか


Intent.ACTION_SENDで他のアプリケーションと連携する
http://techbooster.jpn.org/andriod/application/1388/

暗黙的インテントに設定するACTION
http://d.hatena.ne.jp/unagi_brandnew/20100406/1270517586

ACTION_*の種類

ACTION_CALL
ACTION_VIEW
ACTION_SEND
ACTION_SET_WALLPAPER
ACTION_WEB_SEARCH
など多数の種類がある。

http://developer.android.com/intl/ja/reference/android/content/Intent.html

Intent アクションでデータを受け取る その他のデータの受け渡し
http://d.hatena.ne.jp/kuwalab/20110205/p1