My layout looks like this:
<LinearLayout>
<RelativeLayout>
Some Image and Text as Title
</RelativeLayout>
<RelativeLayout>
<LinearLayout>
<ListView>
My message List
</ListView>
</LinearLayout>
<RelativeLayout>
Edit Box and Send Button
</RelativeLayout>
</RelativeLayout>
</LinearLayout>
I explicitly set the current selection to the last item (newest) of the list when showing.
When not entering text in the Edit box at the bottom, the screen looks like this:
Top Title
List Item 8
List Item 7
...
List Item 2
List Item 1
Bottom Edit box and Send Button
When I click on the Edit box to type my message, the screen looks like this:
Top Title
List Item 8
...
List Item 5
Bottom Edit Box and Send Button
Keyboard
What I really want is:
Top Title
List Item 4
...
List Item 1
Bottom Edit Box and Send Button
Keyboard
Can someone help me please?