if (s.contains("architectsdk://webview?url=")){ String url = s.substring(s.indexOf("?url=")+5); Intent i = new Intent(this, WebViewActivity.class); i.putExtra(Utils.INTENT_WEB_TAG, url); startActivity(i); }
Is anyone has an answedr ? :)
Thanks by advance!
S
Simon 248601
said
almost 8 years ago
Hi Thibaud,
I cannot reproduce your problem. Your implementation looks good to me. I created a new blank activity and started it, when I press the device back button the activity continuous as expected.
Could you please try it with a blank acitivity as well?
Thibaud RENAUX
1 person has this problem