Note that there are some explanatory texts on larger screens.

plurals
  1. POGot Warning : this linearlayout layout or its framelayout parent is possibly useless
    text
    copied!<p> </p> <pre><code>&lt;TabHost android:id="@+id/tabHost" android:layout_width="fill_parent" android:layout_height="fill_parent" &gt; &lt;LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" &gt; &lt;FrameLayout android:id="@android:id/tabcontent" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" &gt; // --------------------------- Here I got warning ------------------------- &lt;LinearLayout android:id="@+id/chat_list" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:visibility="visible" &gt; // -------------------------------------------------------------------------- &lt;ListView android:id="@+id/listView" android:layout_width="fill_parent" android:layout_height="0dp" android:layout_weight="1" android:background="@color/white" &gt; &lt;/ListView&gt; &lt;LinearLayout android:id="@+id/text_entry" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="bottom" android:orientation="horizontal" &gt; &lt;EditText android:id="@+id/txt_inputText" android:layout_width="125dp" android:layout_height="wrap_content" android:layout_weight="0.8" android:hint="@string/enter_text" android:inputType="text" /&gt; &lt;Button android:id="@+id/btn_Send" android:layout_width="100dp" android:layout_height="wrap_content" android:layout_weight="0.2" android:text="@string/send" /&gt; &lt;/LinearLayout&gt; &lt;/LinearLayout&gt; &lt;/FrameLayout&gt; &lt;TabWidget android:id="@android:id/tabs" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="0" &gt; &lt;/TabWidget&gt; &lt;/LinearLayout&gt; &lt;/TabHost&gt; </code></pre> <p></p> <p>How to solve this warning ? I can't find any solution. Any help will be appreciated.</p>
 

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