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

선언 했을떄요

해당 activitiy 에서
@Override
protected void onNewIntent(Intent i) {

}

이렇게 받았는데

이게 꺼져 있을떄는 onNewIntent 로 값이 넘어 오는데

해당 activitiy 가 켜져 있으면 onNewIntent 로 값이 넘어 오지 않네요..

혹시 이것 어떻게 해야 하나요?