Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Maybe you need to sepearte the adView from your main LinearLayout, instead of loading it inside the Linear Layout where your network(async) activities will will be done.</p> <p>Just try using the Frame Layout, with adView at top &amp; with margin_top of "55dp" for the LinearLayout. </p> <pre><code>&lt;FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" &gt; &lt;LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="top"&gt; &lt;com.google.ads.AdView xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads" android:id="@+id/main_adView" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_gravity="bottom" android:gravity="center" ads:adUnitId = "******" ads:adSize = "BANNER" &gt; &lt;/com.google.ads.AdView&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:id="@+id/linearLayout" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="55dp" android:orientation="vertical"&gt; &lt;ScrollView android:id="@+id/scroll1" android:layout_width="fill_parent" android:layout_height="fill_parent" &gt; &lt;TableLayout android:id="@+id/table_layout" android:layout_width="fill_parent" android:layout_height="fill_parent" &gt; &lt;TableRow&gt; &lt;TextView android:id="@+id/left_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="0" android:gravity="left|center_vertical" android:padding="5dip" android:text="Code" /&gt; &lt;TextView android:id="@+id/middle_text" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:gravity="right|center_vertical" android:padding="5dip" android:text="Name of Company" /&gt; &lt;TextView android:id="@+id/right_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="0" android:gravity="right|center_vertical" android:padding="5dip" android:text="1.3" /&gt; &lt;/TableRow&gt; &lt;/TableLayout&gt; &lt;/ScrollView&gt; &lt;/LinearLayout&gt; &lt;/FrameLayout&gt; </code></pre> <p>Please let me know the status . </p>
    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.
    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