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

I have researched a lot to adjust the layout when softkeyboard is active and I have successfully implemented it but the problem comes when I use android:theme="@android:style/Theme.NoTitleBar.Fullscreen" this in my activity tag in manifest file.

For this I have used android:windowSoftInputMode="adjustPan|adjustResize|stateHidden" with different options but no luck.

After that I implemented FullScreen programmatically and tried various layout to work with FullScreen but all in vain.

I referred these links and have looked many posts here related to this issue:

http://android-developers.blogspot.com/2009/04/updating-applications-for-on-screen.html

http://davidwparker.com/2011/08/30/android-how-to-float-a-row-above-keyboard/

Here is xml code:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/masterContainerView"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:orientation="vertical" xmlns:android="http://schemas.android.com/apk/res/android"
    android:background="#ffffff">

    <ScrollView android:id="@+id/parentScrollView"
        android:layout_width="fill_parent" android:layout_height="wrap_content">

        <LinearLayout android:layout_width="fill_parent"
            android:layout_height="fill_parent" android:orientation="vertical">

            <TextView android:id="@+id/setup_txt" android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="Setup - Step 1 of 3"
                android:textColor="@color/top_header_txt_color" android:textSize="20dp"
                android:padding="8dp" android:gravity="center_horizontal" />

            <TextView android:id="@+id/txt_header" android:layout_width="fill_parent"
                android:layout_height="40dp" android:text="AutoReply:"
                android:textColor="@color/top_header_txt_color" android:textSize="14dp"
                android:textStyle="bold" android:padding="10dp"
                android:layout_below="@+id/setup_txt" />

            <EditText android:id="@+id/edit_message"
                android:layout_width="fill_parent" android:layout_height="wrap_content"
                android:text="Some text here." android:textSize="16dp"
                android:textColor="@color/setting_editmsg_color" android:padding="10dp"
                android:minLines="5" android:maxLines="6" android:layout_below="@+id/txt_header"
                android:gravity="top" android:scrollbars="vertical"
                android:maxLength="132" />

            <ImageView android:id="@+id/image_bottom"
                android:layout_width="fill_parent" android:layout_height="wrap_content"
                android:layout_below="@+id/edit_message" />

        </LinearLayout>
    </ScrollView>

    <RelativeLayout android:id="@+id/scoringContainerView"
        android:layout_width="fill_parent" android:layout_height="50px"
        android:orientation="vertical" android:layout_alignParentBottom="true"
        android:background="#535254">

        <Button android:id="@+id/btn_save" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:layout_alignParentRight="true"
            android:layout_marginTop="7dp" android:layout_marginRight="15dp"
            android:layout_below="@+id/edit_message"
            android:text = "Save" />

        <Button android:id="@+id/btn_cancel" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:layout_marginTop="7dp"
            android:layout_marginRight="10dp" android:layout_below="@+id/edit_message"
            android:layout_toLeftOf="@+id/btn_save" android:text = "Cancel" />

    </RelativeLayout>
</RelativeLayout>

enter image description here

I want the bottom 2 buttons should go upward when the softkeyboard comes in picture.

enter image description here

share|improve this question
I think you have to add Buttons inside ScrollView and below EditText. – Balaji Khadake Sep 14 '11 at 14:44
I have already tried many options that does not work ... – Vineet Shukla Sep 14 '11 at 15:01
1  
put ur buttons in a framelayout and set the weight of the framelayout to 1 and finally use only android:windowSoftInputMode="adjustPan" tell me if this work.. – Sherif elKhatib Sep 20 '11 at 15:19
@VineetShukla have you found any work out with full screen?? – Muhammad Babar Apr 29 at 11:00

6 Answers

only use android:windowSoftInputMode="adjustResize|stateHidden as you use AdjustPan then it disable the resizing property

share|improve this answer
1  
I have used this combination but no luck.... – Vineet Shukla Sep 20 '11 at 7:31
but its working for me, ok only put adjustResize – hotveryspicy Sep 20 '11 at 7:34
I have used it too....please make you are doing it in full screen mode and on which device are you testing? – Vineet Shukla Sep 20 '11 at 7:36
HTC NEXUS one, ok i hvnt add full screen – hotveryspicy Sep 20 '11 at 7:39
can you use getWindow().requestFeature(Window.FEATURE_NO_TITLE); onCreate() instead using theme? – hotveryspicy Sep 20 '11 at 7:50
show 1 more comment

Since the answer has already been picked and problem known to be a bug, I thought I would add a "Possible Work Around".

You can toggle fullScreen mode when soft keyboard is shown. This allows the "adjustPan" to work correctly.

In other words, I still use @android:style/Theme.Black.NoTitleBar.Fullscreen as part of the application theme and stateVisible|adjustResize as part of the activity window soft input mode but to get them to work together I must toggle fullscreen mode before the keyboard comes up.

Use the following Code:

Turn Off full screen mode

getWindow().addFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);

Turn On full screen mode

getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);

Note - inspiration came from: Hiding Title in a Fullscreen mode

share|improve this answer
I appreciate that you have given time to the problem, +1 for that. I will definitely test this approach and let you know soon if it worked for me, thanks. – Vineet Shukla Jun 15 '12 at 13:59

Just keep as android:windowSoftInputMode="adjustResize". Because it is given to keep only one out of "adjustResize" and "adjustPan"(The window adjustment mode is specified with either adjustResize or adjustPan. It is highly recommended that you always specify one or the other). You can found out this over here: http://developer.android.com/resources/articles/on-screen-inputs.html

It works perfectly for me.

share|improve this answer
I have used one by one and with combination also but no luck... – Vineet Shukla Sep 15 '11 at 6:39
I am not getting any problem...I have tried your XML also. This one also works..m using Os version 2.2 – Balaji Khadake Sep 15 '11 at 7:38
try with full screen mode it will not work..... – Vineet Shukla Sep 15 '11 at 7:40
I have tried with full screen mode only...m testing it on my Nexus One and Nexus S....It works. – Balaji Khadake Sep 15 '11 at 7:55
1  
I have tried with Galaxy S, HTC wildfire, HTC Hero , Motorola Deify and Sony XPeria. Not working on any single device. – Vineet Shukla Sep 15 '11 at 8:27
show 2 more comments

You want the bottom bar to stick to the bottom of the view, but when the keyboard is displayed, they should move up to be placed above the keyboard, right?

You can try this code snippet:

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    ...>

    <RelativeLayout
        android:id="@+id/RelativeLayoutTopBar"
    ...>
    </RelativeLayout>

    <LinearLayout
        android:id="@+id/LinearLayoutBottomBar"
        android:layout_alignParentBottom = true
        ...>
    </LinearLayout>

    <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="390dp"
    android:orientation="vertical" 
    android:layout_above="@+id/LinearLayoutBottomBar"
    android:layout_below="@+id/RelativeLayoutTopBar"> 

    <ScrollView 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp"
        android:id="@+id/ScrollViewBackground">

            ...

        </ScrollView>
     </LinearLayout>
  </RelativeLayout>

The BottomBar will stick to the bottom of the view and the LinearLayout containing the ScrollView will take what's left of the view after the top/bottom bar and the keyboard are displayed. Let me know if it works for you as well.

share|improve this answer
Sorry, it didn't work.... – Vineet Shukla Sep 20 '11 at 14:07
Very strange as it worked in my apps several times. By the way, RelativeLayout has no orientation so you can delete these attributes in your code. I just recognized I could have cut down the code snippet to the line: android:layout_below="@+id/scoringContainerView" which you have to add to your ScrollView – banzai86 Sep 20 '11 at 14:26
Have you tried it with full screen..... – Vineet Shukla Sep 20 '11 at 14:28
Fullscreen? Do you mean without a layout at the top? – banzai86 Sep 20 '11 at 14:33
no ..... I mean no status bar which show battery life, connectivity for the device etc.... – Vineet Shukla Sep 20 '11 at 14:34
show 2 more comments

Indeed the soft keyboard appearance doesn't seem to affect the Activity in any way no matter what windowSoftInputMode I select in the FullScreen mode.

Though I couldn't find much documentation on this property, I think that the FullScreen mode was designed for gaming application which do not require much use of the soft keyboard. If yours is an Activity which requires user interaction through soft keyboard, please reconsider using a non-FullScreen theme. You could turn off the TitleBar using a NoTitleBar theme. Why would you want to hide the notification bar?

share|improve this answer

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.