【发布时间】:2011-09-22 04:39:56
【问题描述】:
我的布局是这样的:
<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>
我在显示时明确将当前选择设置为列表的最后一项(最新)。
在底部的编辑框中不输入文本时,屏幕如下所示:
Top Title
List Item 8
List Item 7
...
List Item 2
List Item 1
Bottom Edit box and Send Button
当我点击编辑框输入我的信息时,屏幕如下所示:
Top Title
List Item 8
...
List Item 5
Bottom Edit Box and Send Button
Keyboard
我真正想要的是:
Top Title
List Item 4
...
List Item 1
Bottom Edit Box and Send Button
Keyboard
有人可以帮帮我吗?
【问题讨论】:
标签: android listview keyboard android-edittext