I have two Activity, Main and Rbrowser Activity. In Main Activity a list of urls is shown. When a link is clicked, Rbrowser Activity is launched. For each launch setContentView(R.layout.rbrowser);
is called from onCreate
, which is slow.
Is there any good practice to reuse Activity's instance, and just reload Rbrowser's webview with new url?
Thanks