2

我正在实现一些 twitter 工作的 OAuth 部分,但无法在我期望的地方获得回调。我将用户发送到浏览器以授权应用程序,但回调会启动一个新活动,而不是返回到发送它的活动。在模拟器中,后台堆栈如下所示:

TwitterActivity --> 而不是这个开始,我想回到原来的那个

浏览器活动

TwitterActivity --> 这会将请求发送到浏览器

我为活动设置了 singleTop:

<activity
    android:name=".TwitterSearchActivity"
    android:theme="@style/Theme.Sherlock.Light"
    android:configChanges="orientation"
    android:launchMode="singleTop" >

    <!-- Used for OAuth callback -->
    <intent-filter>
        <action android:name="android.intent.action.VIEW" />

        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />

        <data
            android:host="callback"
            android:scheme="twitter-search-callback" />
    </intent-filter>

</activity>

因此,我希望原始活动不会收到 onNewIntent(),而不是创建新活动,但它没有发生。

这是启动浏览器的代码,以防它很重要:

    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(token.getAuthenticationURL()));
    startActivity(intent);
4

1 回答 1

2

最后,我所做的不是将其发送到浏览器,而是创建了自己的 WebView 活动,然后可以从那里启动意图。在 webview 本身我有这个客户端:

private class MyWebViewClient extends WebViewClient {
    @Override
    public boolean shouldOverrideUrlLoading(WebView view, String url) {

        if(url.contains(mScheme)) {

            finish();
            Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
            startActivity(intent);

            return true;
        }

        view.loadUrl(url);
        return true;
    }
...

请注意,在 startIntent 之前调用 finish() 是关键,这样活动堆栈就会在顶部有启动活动(原始问题中的 TwitterActivity),在这种情况下,被标记为 singleTop,它将再次启动并接收通过 onNewIntent 方法的意图。

于 2013-11-12T12:16:11.623 回答