Android中的可滚动布局

时间:2010-11-17 07:54:55

标签: android forms android-linearlayout

我在LinearLayout中有一个注册表单,如下所示:

alt text

当仿真器屏幕处于默认位置时,它工作正常。但是当我旋转模拟器屏幕时,它只显示适合屏幕的元素,剩下的元素就会结束。如下面的屏幕所示: alt text

现在我想让这个布局可滚动但不能理解。任何帮助将受到高度赞赏。

2 个答案:

答案 0 :(得分:88)

尝试将LinearLayout放在ScrollView中,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent">

    <LinearLayout android:id="@+id/menu_ll"
        android:layout_width="fill_parent" android:layout_height="fill_parent"></LinearLayout>

</ScrollView>

答案 1 :(得分:0)

我只是在AndroidManifest.xml的活动中添加了此代码

android:windowSoftInputMode="stateVisible|adjustResize"