Skip to content

Instantly share code, notes, and snippets.

@marinat
Created July 21, 2014 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marinat/bd8c2dcfa87103290b38 to your computer and use it in GitHub Desktop.
Save marinat/bd8c2dcfa87103290b38 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffff" >
<com.example.wwwithscrolltest.CustomScrollView
android:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<View
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="59dp"
android:background="#ffff00" />
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
</com.example.wwwithscrolltest.CustomScrollView>
<EditText
android:id="@+id/url"
android:layout_width="match_parent"
android:layout_height="60dp"
android:background="#ffffff"
android:text="URL OLOLO" />
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment