Try like :
main_activity.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<WebView
android:id="@+id/webView2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" />
<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" />
</LinearLayout>
MainActivity.java Code For the webView.
WebView myWebView = (WebView) findViewById(R.id.webView2);
myWebView.setWebViewClient(new WebViewClient());
myWebView.loadUrl("http://www.facebook.com");
WebView myWebView1 = (WebView) findViewById(R.id.webView);
myWebView1.setWebViewClient(new WebViewClient());
myWebView1.loadUrl("http://www.google.com");