Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>The <code>visibility</code> property of your <code>ScrollView</code> is gone, change it to visible</p> <pre><code>&lt;ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#ffffff" android:visibility="visible" android:id="@+id/scrollmain" &gt; &lt;RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="wrap_content" &gt; &lt;TextView android:id="@+id/favtextView1" android:textColor="#000000" android:text="ddd" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="7dp" android:textAppearance="?android:attr/textAppearanceMedium" /&gt; &lt;TextView android:id="@+id/favtext3" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@+id/favtextView1" android:padding="7dp" android:textAppearance="?android:attr/textAppearanceSmall"/&gt; &lt;View android:id="@+id/imgv" android:layout_width="fill_parent" android:layout_height="1dp" android:layout_below="@+id/favtext3" android:background="@android:color/darker_gray"/&gt; &lt;WebView android:id="@+id/webView1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentRight="true" android:layout_below="@+id/imgv" &gt;&lt;requestFocus/&gt;&lt;/WebView&gt; &lt;/RelativeLayout&gt; &lt;/ScrollView&gt; </code></pre>
 

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