0

私は線形レイアウトにスクロールビューを使用していますが、ほとんどのツイッターアプリやインスタグラムで実装されているように、スクロールビューの高さが画面全体を占めるのを止めることができるかどうか疑問に思いました.

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

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/background"
    android:isScrollContainer="true"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="289dp"
        android:layout_height="73dp"
        android:src="@drawable/identikatlogo" />

    <TextView
        android:id="@+id/tvName"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/first" />

    <EditText
        android:id="@+id/Name"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:inputType="text|textCapWords" >

        <requestFocus />
    </EditText>

    <TextView
        android:id="@+id/tvLastName"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/last" />

    <EditText
        android:id="@+id/LastName"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="text|textCapWords" />

    <TextView
        android:id="@+id/tvEmail"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/email" />

    <EditText
        android:id="@+id/Email"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="text|textEmailAddress" />

    <TextView
        android:id="@+id/tvAddress"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/address" />

    <EditText
        android:id="@+id/Address"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="textMultiLine" />

    <TextView
        android:id="@+id/tvCity"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/city" />

    <EditText
        android:id="@+id/City"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="text|textCapWords" />

    <TextView
        android:id="@+id/tvState"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/state" />

    <EditText
        android:id="@+id/State"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="text|textCapWords" />

    <TextView
        android:id="@+id/tvZip"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/zipcode" />

    <EditText
        android:id="@+id/Zip"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="number" />

    <Button
        android:id="@+id/Submit"
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:text="@string/submit" />
</LinearLayout>

</ScrollView>
4

1 に答える 1

0

もちろん、ここでスクロールビューの高さをfillparentに指定しているため、画面全体が必要です。

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

一部だけを占有する必要がある場合は、ディップ値で高さを指定するか、線形レイアウトを使用してレイアウトの重量合計を指定する必要があります。

于 2012-12-14T06:48:11.610 に答える