Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I think you can achieve this by using relative layout instead of linear layout. I have not tested it but it should work.</p> <pre><code> &lt;RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" &gt; &lt;LinearLayout android:id="@+id/lotTopTitleBar" android:layout_width="match_parent" android:layout_height="50dp"&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:id="@+id/lotFloatView" android:layout_width="120dp" android:layout_height="wrap_content" android:layout_below="@id/lotTopTitleBar"&gt; &lt;Button android:layout_width="match_parent" android:layout_height="60dp" android:background="@null" /&gt; &lt;Button android:layout_width="match_parent" android:layout_height="60dp" android:background="@null" /&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_below="@id/lotTopTitleBar" android:id="@+id/lotLL" android:layout_weight="1"&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:layout_width="match_parent" android:layout_below="@id/lotLL" android:layout_height="50dp"&gt; &lt;/LinearLayout&gt; &lt;/RelativeLayout &gt; </code></pre> <p><strong>EDIT</strong></p> <pre><code> &lt;LinearLayout android:layout_width="match_parent" android:layout_below="@id/lotLL" android:layout_alignParentBottom="true" android:id="@+id/lotLastLL" android:layout_height="50dp"&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@id/lotTopTitleBar" android:layout_above="@id/lotLastLL" android:id="@+id/lotLL" &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. 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