Guest User

activity_main.xml

a guest
May 10th, 2017
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.88 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.   xmlns:tools="http://schemas.android.com/tools"
  4.   android:layout_width="match_parent"
  5.   android:layout_height="match_parent"
  6.   android:orientation="vertical"
  7.   tools:context="p.testwebviewcommunicate.MainActivity">
  8.  
  9.     <Button
  10.       android:id="@+id/button"
  11.       android:layout_width="match_parent"
  12.       android:layout_height="wrap_content"
  13.       android:text="Native android button"/>
  14.  
  15.     <WebView
  16.       android:id="@+id/webView1"
  17.       android:layout_width="match_parent"
  18.       android:layout_height="0dp"
  19.       android:layout_weight="1" >
  20.  
  21.     </WebView>
  22.  
  23.     <WebView
  24.       android:id="@+id/webView2"
  25.       android:layout_width="match_parent"
  26.       android:layout_height="0dp"
  27.       android:layout_weight="1" />
  28. </LinearLayout>
Add Comment
Please, Sign In to add comment