マニフェスト変更

        <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());
            }
        }
    }

Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)

© 2024 Falco Tech Blog Suffusion theme by Sayontan Sinha