Android回调URL调用oncreate
我正在制作 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);
}
I am making twitter application in which i open browser for user authentication and i pass call_back URL when launching authentication browser
problem is after authenticating it is calling again oncreate of TWitterShare class instead calling onNewIntent method, why is that ? my another class working fine i am unable to find difference any idea by looking at the following ocde why it is calling oncreate again ?
<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);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我和你们所有人都感到羞耻,修复
launchMode="singleInstance" 的小事而不是使用 android:launchMode="singleInstance"
Shame on me and all of you guys, small thing to fix
launchMode="singleInstance" instead use android:launchMode="singleInstance"
您不认为应该是 LaunchMode = SingleTop 而不是单实例吗?
DonT you think it should have been LaunchMode = SingleTop instead of single instance ??