Note that there are some explanatory texts on larger screens.

plurals
  1. POCan't see a button under a ListView in my layout
    primarykey
    data
    text
    <p>Here's a layout of my Activity XML:</p> <p><img src="https://i.stack.imgur.com/oN5Tt.png" alt="enter image description here"></p> <p>For some reason I can't see that button t the bottom of my screen. Here's the code:</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="match_parent" android:layout_height="match_parent" android:background="@drawable/app_bg" android:orientation="vertical" &gt; &lt;LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" &gt; &lt;LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/bg_transparent" android:orientation="vertical" android:minHeight="44dip" android:minWidth="44dip" &gt; &lt;TextView android:id="@+id/lblNotesCount" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:textSize="18sp" android:textStyle="bold" android:textColor="@color/lblNotesCountColor" /&gt; &lt;TextView android:id="@+id/lblTxtNotes" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:textSize="14sp" android:textStyle="bold" android:textColor="@color/lblNotesCountColor" /&gt; &lt;/LinearLayout&gt; &lt;TextView android:id="@+id/txtActivityListByCategory_Header" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:ellipsize="end" android:gravity="center_vertical|center_horizontal" android:paddingLeft="2dp" android:singleLine="true" android:textStyle="bold" android:textColor="@color/color_WHITE" /&gt; &lt;Button android:id="@+id/btnAddNote" style="?android:attr/buttonStyleSmall" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/btn_new_note_selector" android:minHeight="44dip" android:minWidth="44dip" /&gt; &lt;/LinearLayout&gt; &lt;TextView android:id="@+id/emptyList" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingLeft="2dp" android:text="@string/txtEmptyList" android:textAppearance="?android:attr/textAppearanceMedium" android:textColor="@color/emptyList" /&gt; &lt;ListView android:id="@+id/lstNotesByCategory" android:layout_width="wrap_content" android:layout_height="wrap_content" android:drawSelectorOnTop="false" &gt; &lt;/ListView&gt; &lt;Button android:id="@+id/btnaBack" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/btnBack" /&gt; </code></pre> <p></p> <p>I tried to put the bottom TextView and ListView in a separate LinearLayout, I tried to give that button a layout_weight - nothing helped, I still don't see that button, the LinearLayout goes till the bottom of the activity.</p> <p>What is wrong here? Why don't I see that button?</p> <p><strong>EDIT: Wrote down the entire XML code</strong></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.
 

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