my onNewIntent is not calling

前端 未结 2 606
名媛妹妹
名媛妹妹 2021-01-18 18:43

Creating an application which integrate Twitter. I use this tutorial:

http://blog.blundell-apps.com/sending-a-tweet/

package com.blundell.tut.ttt;

i         


        
相关标签:
2条回答
  • 2021-01-18 19:19

    android:launchMode="singleInstance" worked for me.

    I had to make sure to put this for both the current activity starting the intent, and the activity that is about to start from the intent, within my AndroidManifest.xml.

    0 讨论(0)
  • 2021-01-18 19:20

    change your activity launchmode in manifest as given below and let me know the results,

     android:launchMode="singleTop"
    
    0 讨论(0)
提交回复
热议问题