我正在实现一些 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);