I face to this problem: I've a WebView name webViewA which loaded a website, and now I want clone the webViewA to a webViewB which contains all content is loaded from webViewA, how can I do that?
Thank you! EDIT:
Ok, I'll explain my purpose, I use the android-flip to make a FlipView of WebView, at the start, my WebView will load a url, then, when user flip to next page, I want to use this webview and scrollTo next page position. With android-flip, I cannot return the WebView which load data before in the getView method, so I think I should clone that WebView and use the clone, scroll and return to flipview.