Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>instead RelativeLayout use LinearLayout (vertical view).</p> <pre><code> &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" &gt; &lt;TextView android:id="@+id/header_backButton" android:layout_width="fill_parent" android:layout_height="60dip" android:background="#333322" android:gravity="center_horizontal" android:text="HOME" android:textStyle="bold" android:textSize="30sp" android:textColor="#FFFFFF" /&gt; &lt;ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@+id/header" android:scrollbars="none" &gt; &lt;LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" android:layout_marginTop="2dip" &gt; &lt;WebView android:id="@+id/web" android:layout_width="fill_parent" android:layout_height="wrap_content" /&gt; &lt;WebView android:id="@+id/web1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@+id/web" /&gt; &lt;WebView android:id="@+id/web2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@+id/web1" /&gt; &lt;WebView android:id="@+id/web3" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@+id/web2" /&gt; &lt;WebView android:id="@+id/web4" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@+id/web3" /&gt; &lt;/LinearLayout&gt; &lt;/ScrollView&gt; &lt;/LinearLayout&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload