Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In My application there is tabBar and the Edittext.

See below image:

Normal Screen:

enter image description here

And Image After press on edittext:

enter image description here

Now why this tabbar goes up with the keyboard. I want it to be remain fix at the bottom even if the user open the keyboard by pressing on edittext.

So what should i have to do ?

Please help e for that ?

My xml Layout for the TabBarMain activity is like below:

    <?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    >

    <LinearLayout
        android:id="@+id/LL1"
        android:orientation="vertical"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        >

       <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            />

      <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" 
            android:layout_gravity="bottom"
            android:layout_weight="0"/>

    </LinearLayout>

</TabHost> 

So please help me for that.

Thanks.

share|improve this question
after adding the adjustPan doesn't your EditTextView disappear from the screen on top, please let me know how you resolved this. – Anuj Sep 4 '12 at 8:39

3 Answers

up vote 8 down vote accepted

Please use this

android:windowSoftInputMode="adjustPan"

in android menifest.xml file in your activity.

Example..

<activity
            android:name="Youractivity"
            android:windowSoftInputMode="adjustPan"/>
share|improve this answer
1  
+1 for great answer. – Arslan Jan 31 '12 at 9:17
Thanks. let me try it. – iDroid Explorer Jan 31 '12 at 9:28
Yes it works fine. Realy a Nice answer. great work. Thanks Nik.... – iDroid Explorer Jan 31 '12 at 9:33

set the following in your TabHost

android:isScrollContainer="false"
share|improve this answer
thanks for the answer. – iDroid Explorer Jan 31 '12 at 10:17

add stateUnchanged in your activity attribute windowsoftinputmode in manifest file, as below:

 <activity android:name="Youractivity"
        android:windowSoftInputMode="stateUnchanged"/>
share|improve this answer
Thanks for the answer. – iDroid Explorer Jan 31 '12 at 10:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.