Android:具有多个intent过滤器的SingleTop行为

时间:2014-04-11 16:05:13

标签: android android-intent android-activity launchmode

我正在努力解决SingleTop活动的以下奇怪行为。

我在该活动中定义了一些意图过滤器:

<activity android:name="com.example.DashboardActivity"
        android:screenOrientation="landscape"
        android:launchMode="singleTop"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <data android:scheme="video" />
            <category android:name="android.intent.category.BROWSABLE"/>
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
        <intent-filter>
            <action android:name="android.intent.action.EDIT" />
            <data android:scheme="survey" />
            <category android:name="android.intent.category.BROWSABLE"/>
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
        <intent-filter>
            <action android:name="android.intent.action.CALL" />
            <data android:scheme="call" />
            <category android:name="android.intent.category.BROWSABLE"/>
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
</activity>

此代码应启动活动:

webView.setWebViewClient(new WebViewClient() 
    { 
        public boolean shouldOverrideUrlLoading(WebView view, String url) {

            try {
                Intent intent = new Intent(Intent.ACTION_VIEW);
                intent.setData(Uri.parse(url));
                startActivity(intent);

                return true;

            }   catch(ActivityNotFoundException e) {

                Log.e(TAG,"Could not load url"+url);
            }

            return super.shouldOverrideUrlLoading(view, url);    

        }

    });

在DashboardActivity的onResume中,我检查相应的操作:

public void onResume(){
    super.onResume();
    Fragment fragment = null;

    if (Intent.ACTION_VIEW.equals(intent.getAction())) {

        extras.putParcelable("uri", getIntent().getData());
        fragment = new VideoplayerFragment();

    } else {

        fragment = new DashboardFragment();

    }

    addOrReplaceFragment(fragment, extras);
}

但是当我运行此代码时,我总是得到android.intent.action.MAIN动作。如果我删除了singleTop启动模式,它会启动一个新活动,但会传递正确的意图。我必须使用相同的活动实例,因此singleTopsingleTasksingleInstance必须完成这项工作。但我不知道这里出了什么问题。帮助!

1 个答案:

答案 0 :(得分:2)

Intent.ACTION_VIEW.equals(intent.getAction())

这个意图来自哪里?为了捕获新的意图,你必须使用 onNewIntent()