在列表视图android上方设置滚动视图以编辑文本

时间:2011-09-20 05:12:40

标签: android

我有一个编辑文本和一个提交按钮,用于在列表视图中显示输出但是当我在编辑文本中写东西时,我的编辑框不会出现因为软键板所以我想设置滚动编辑文本和提交按钮,这样哪个我打字可以在编辑文本上看到。我知道我不能为列表视图设置滚动,所以如何从列表视图中分离它意味着我如何才能使用多个相对布局设置滚动视图仅用于上面的列表内容

我的xml是

1 个答案:

答案 0 :(得分:1)

只需在布局中尝试下面的代码

 <ScrollView android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<-- put your controll here which you want -->
</LinearLayout>
            </ScrollView>