I have made this:
public class Neshaniha extends Activity {
private WebView webView;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_neshaniha);
webView = (WebView) findViewById(R.id.webview);
webView.loadUrl("http://www.mywebsite.org/");
}
}
But if i open links in this app, its opening in the browser, not in the app. How can i made this?
Thanx.