I use the following code to open an URL in browser:
Intent intent = new Intent("android.intent.action.VIEW", Uri.parse(url));
startActivity(intent);
But if the page behind the url was already opened in browser, running the above code doesn’t refresh the page. How could I force page refreshing?
to my knowledge you cannot force it to refresh from the Android side (unless you’re showing it in your own WebView) You’d have to set the page itself to auto refresh, that would presumably ensure whatever is being shown is likely to be up to date.