12月 122012
マニフェスト変更
<activity android:name=".HogeActivity" android:label="@string/app_name" android:launchMode="singleTop" >
ディフォルトの設定ではなくシングルトップを指定する。
すでに生成済みの activity がよばれると以下のメソッドが呼ばれます。
@Override protected void onNewIntent(Intent intent) { super.onNewIntent(intent); if (Intent.ACTION_VIEW.equals(intent.getAction())) { Uri d = intent.getData(); if (d != null) { hogeFile(d.getPath()); } } }