Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You can use both scroll view in this way it works for me</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" &gt; &lt;HorizontalScrollView android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="match_parent" &gt; &lt;TableLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" &gt; &lt;TableRow android:id="@+id/first" android:layout_width="fill_parent" android:layout_height="fill_parent" &gt; &lt;Button android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="back"&gt;&lt;/Button&gt; &lt;/TableRow&gt; &lt;TableRow android:id="@+id/second" android:layout_width="fill_parent" android:layout_height="fill_parent" &gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="Hole No./Pic"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="Distance"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="Par"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="Stroke"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="Player-1"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="Player-2"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="Player-3"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="Player-4"&gt;&lt;/TextView&gt; &lt;/TableRow&gt; &lt;TableRow android:id="@+id/third" android:layout_width="fill_parent" android:layout_height="fill_parent" &gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="1" android:textSize="24dp"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="222yrds" android:textSize="24dp"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="1" android:textSize="24dp"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="1" android:textSize="24dp"&gt;&lt;/TextView&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="fill_parent" android:text=" " android:id="@+id/playra1"&gt;&lt;/EditText&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="fill_parent" android:text=" " android:id="@+id/playrb1"&gt;&lt;/EditText&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="fill_parent" android:text=" " android:id="@+id/playrc1"&gt;&lt;/EditText&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="fill_parent" android:text=" " android:id="@+id/playrd1"&gt;&lt;/EditText&gt; &lt;/TableRow&gt; &lt;TableRow android:id="@+id/third" android:layout_width="fill_parent" android:layout_height="fill_parent" &gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="2"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="1" android:textSize="24dp"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="1" android:textSize="24dp"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="1" android:textSize="24dp"&gt;&lt;/TextView&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="fill_parent" android:text=" " android:id="@+id/playra2"&gt;&lt;/EditText&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="fill_parent" android:text=" " android:id="@+id/playrb2"&gt;&lt;/EditText&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="fill_parent" android:text=" " android:id="@+id/playrc2"&gt;&lt;/EditText&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="fill_parent" android:text=" " android:id="@+id/playrd2"&gt;&lt;/EditText&gt; &lt;/TableRow&gt; &lt;TableRow android:id="@+id/third" android:layout_width="fill_parent" android:layout_height="fill_parent" &gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="2"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="1" android:textSize="24dp"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="1" android:textSize="24dp"&gt;&lt;/TextView&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="1" android:textSize="24dp"&gt;&lt;/TextView&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="fill_parent" android:text=" " android:id="@+id/playra3"&gt;&lt;/EditText&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="fill_parent" android:text=" " android:id="@+id/playrb3"&gt;&lt;/EditText&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="fill_parent" android:text=" " android:id="@+id/playrc3"&gt;&lt;/EditText&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="fill_parent" android:text=" " android:id="@+id/playrd3"&gt;&lt;/EditText&gt; &lt;/TableRow&gt; &lt;/TableLayout&gt; &lt;/HorizontalScrollView&gt; &lt;/ScrollView&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    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