Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The problem is because you have "match_parent" everywhere :) Try layout_width="wrap_content" and layout_height="wrap_content" for all except parent LinearLayout</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;LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" &gt; &lt;TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Background Color: "/&gt; &lt;Spinner android:id="@+id/Spinner" android:layout_width="wrap_content" android:layout_height="wrap_content" /&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" &gt; &lt;TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Size: " /&gt; &lt;RadioGroup android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" &gt; &lt;RadioButton android:id="@+id/small" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Small" /&gt; &lt;RadioButton android:id="@+id/medium" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Medium" /&gt; &lt;RadioButton android:id="@+id/large" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Large" /&gt; &lt;/RadioGroup&gt; &lt;/LinearLayout&gt; &lt;Button android:id="@+id/Make_Changes" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Confirm"/&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. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. 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