Android Google Chrome not firing after lockscreen app Android Google Chrome not firing after lockscreen app google-chrome google-chrome

Android Google Chrome not firing after lockscreen app


I would open the web page as follows:

public void OpenUrl() {             private WebView View;    View = (WebView) WebDialog.findViewById(R.id.ticketline);      View.setWebViewClient(new WebConn());    View.setScrollbarFadingEnabled(true);      View.setHorizontalScrollBarEnabled(false);      View.getSettings().setJavaScriptEnabled(true);    View.loadUrl("url to be loaded goes here");    getActivity().getSupportFragmentManager().beginTransaction().remove(this).commit();    WebDialog.show();}

Alternatively you could try the following:

getWindow().addFlags(WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD|WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED); Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("url goes here")); startActivity(browserIntent);finish();

Hope this helps :)


I have got the same problem, I believe this is a bug in Chrome as other browsers, like Firefox and Opera, they work properly. But I found a workaround

Android lock screen notification is not able to open Browser on double tapping

Let me know whether this works for you or not.