Is there a way to make the screen scroll to allow the text field to be scene?

link|improve this question

64% accept rate
feedback

3 Answers

up vote 2 down vote accepted

I believe that you can make it scroll by using the trackball, which might be achieved programmatically through selection methods eventually, but it's just an idea. I know that the trackball method typically works, but as for the exact way to do this and make it work from code, I do not sure.
Hope that helps.

link|improve this answer
What I think I need is for a way to make the window "artificially" longer so that the view can scroll. Currently the RelativeLayout is set to android:layout_width="wrap_content" android:layout_height="wrap_content" – Alexis K Jul 21 '10 at 2:33
I do not know of a solution then. Perhaps you might want to manually adjust the width and height values to suit your needs, by stretching them further to that which "wrap_content" is resolving to. – Luis Miguel Serrano Jul 21 '10 at 3:38
feedback

Are you asking how to control what is visible when the soft keyboard opens? You might want to play with the windowSoftInputMode. See developer docs for more discussion.

link|improve this answer
1  
This is the correct way to do it, and should be marked as the correct answer. +1 – Zach Nov 11 '10 at 15:16
feedback

Why not try to add a ScrollView to wrap whatever it is you want to scroll. Here is how I have done it, where I actually leave a header on top which does not scroll, while the dialog widgets (in particular the EditTexts) scroll when you open soft keypad.

<LinearLayout android:id="@+id/HeaderLayout" >
  <!-- Here add a header or whatever will not be scrolled. -->
</LinearLayout>
<ScrollView android:id="@+id/MainForm" >
  <!-- Here add your edittexts or whatever will scroll. -->
</LinearLayout>

I would typically have a LinearLayout inside the ScrollView, but that is up to you. Also, setting Scrollbar style to outsideInset helps, at least on my devices.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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