我正在制作 twitter 应用程序,在其中我打开浏览器进行用户身份验证,并在启动身份验证浏览器时传递 call_back URL
问题是在验证后它再次调用 TWitterShare 类的 oncreate 而不是调用 onNewIntent 方法,这是为什么呢?我的另一个班级工作正常,我无法通过查看以下 ocde 找到任何想法,为什么它再次调用 oncreate ?
<activity android:name=".TwitterShare"
launchMode="singleInstance">
<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:scheme="myapp" android:host="oauth1" />
</intent-filter>
</activity>
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
}