Note that there are some explanatory texts on larger screens.

plurals
  1. POAdjust layout buttons while softkeyboard is on in android
    primarykey
    data
    text
    <p>i am developing an android app where i have a Text box.. All i want is, Onclick of that Text box, the layout buttons which are below the Keyboard should be visible along with the keyboard buttons since they are hidden by the keyboard. I am using the below code in xml.</p> <pre><code> &lt;LinearLayout android:id="@+id/layout1" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:layout_weight=".20"&gt; &lt;EditText android:id="@+id/edittext1" android:layout_width="match_parent" android:layout_height="match_parent" android:cursorVisible="false" android:ems="10" android:gravity="top" android:hint="Message : " android:inputType="textMultiLine" android:scrollbars="vertical" android:textColor="#000000" android:textSize="15sp" android:visibility="visible" /&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:id="@+id/linearLayout2" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight=".80" android:background="@drawable/albgbckgrnd" android:orientation="horizontal" &gt; &lt;ImageButton android:id="@+id/button1" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="5dp" android:layout_weight=".33" android:textSize="25sp" android:typeface="sans" android:visibility="visible" /&gt; &lt;ImageButton android:id="@+id/button2" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="5dp" android:layout_weight=".33" android:textSize="25sp" android:typeface="sans" android:visibility="visible" /&gt; &lt;ImageButton android:id="@+id/button3" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="5dp" android:layout_weight=".33" android:textSize="25sp" android:typeface="sans" android:visibility="visible" /&gt; &lt;/LinearLayout&gt; </code></pre> <p>Not Getting how to do it! Pls Help! Thanks! </p>
    singulars
    1. This table or related slice is empty.
    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