0

我对 Android 完全陌生,我的第一次尝试是使用 LinearLayout 来定位多个控件,但是我的模拟器屏幕不是那么大,无法包含我的所有控件,并且输出不会显示所有控件,并且没有自动垂直滚动条添加。我应该怎么做才能使它们全部可见?

<LinearLayout>
<control_1/>
<control_2/>
///////...
<control_n/>
</LinearLayout>
4

1 回答 1

1

您需要将布局包装在ScrollView中。您的代码如下所示:

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <!-- put your controls in here -->

    </LinearLayout>
</ScrollView>
于 2012-10-01T21:34:27.570 回答