Note that there are some explanatory texts on larger screens.

plurals
  1. POEdittext not visible
    text
    copied!<p>In my application I have 3 buttons and one listView and one editText with image. My problem is that when I am editing task in my editText the size of the editText is reduced very much.This problem occurs only on mobile. Please help me. <img src="https://i.stack.imgur.com/Od636.png" alt="enter image description here"> This is my layout file:</p> <pre><code> &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:weightSum="10" &gt; &lt;LinearLayout android:layout_width="fill_parent" android:layout_height="0dip" android:layout_weight="1" android:orientation="horizontal" android:weightSum="30" &gt; &lt;Button android:id="@+id/todaytaskbtnid" style="?android:attr/buttonStyleSmall" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="10" android:background="@drawable/buttonselector" android:gravity="center" android:text="TODAY" /&gt; &lt;Button android:id="@+id/tomorrowtaskbtnid" style="?android:attr/buttonStyleSmall" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="10" android:background="@drawable/buttonselector" android:text="TOMORROW" /&gt; &lt;Button android:id="@+id/futuretaskbtnid" style="?android:attr/buttonStyleSmall" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="10" android:background="@drawable/buttonselector" android:text="FUTURE" /&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:layout_width="fill_parent" android:layout_height="0dip" android:layout_weight="8" &gt; &lt;ListView android:id="@+id/frontpagetasklistid" android:layout_width="fill_parent" android:layout_height="fill_parent" &gt; &lt;/ListView&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:layout_width="fill_parent" android:layout_height="0dip" android:layout_weight="1" android:orientation="horizontal" &gt; &lt;EditText android:id="@+id/edittextidAddTodayTask" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1" android:background="@drawable/edittextselector" android:drawableRight="@drawable/addtask" android:hint="Add Today Task" android:lines="3" android:maxLines="5" android:minLines="1" /&gt; &lt;/LinearLayout&gt; &lt;/LinearLayout&gt; </code></pre> <p>Mobile shot: <img src="https://i.stack.imgur.com/DkYzU.jpg" alt="enter image description here"></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