Android Scrollview 压缩布局

Android Scrollview Compressing Layout

我创建了一个很长的表单,因此需要垂直滚动。我添加了一个 Scrollview 来实现这一点。但是,在添加滚动视图后,表单仅被压缩到屏幕的 75%,而不是垂直扩展。我似乎犯了一些与布局权重相关的错误,但我找不到它。

如果有人能帮我调试就太好了。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/sv1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context="com.example.jaya.myapplication.display_clientdetails">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
android:orientation="vertical"
android:background="@color/white">

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="0.75"
    android:orientation="horizontal"
    android:gravity="center">

    <Button
        android:id="@+id/editbutton"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:drawableLeft="@drawable/ic_action_edit"
        android:layout_marginEnd="20dp"
        android:layout_marginRight="20dp"
        android:drawableStart="@drawable/ic_action_edit"
        android:background="@color/orange"
        android:text="@string/edit_client"/>

    <Button
        android:id="@+id/deletebutton"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:drawableLeft="@drawable/ic_delete"
        android:drawableStart="@drawable/ic_delete"
        android:background="@color/orange"
        android:text="@string/delete_client"/>


</LinearLayout>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:orientation="horizontal"
    android:gravity="center">

    <TextView
        android:id="@+id/namelabel_display"
        android:text="@string/name_label"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textSize="@dimen/text_form"/>

    <EditText
        android:id="@+id/namevalue"
        android:layout_width="0dp"
        android:layout_weight="2"
        android:layout_height="wrap_content"
        android:inputType="text"
        android:focusable="false"
        android:cursorVisible="false"/>

</LinearLayout>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:orientation="horizontal"
    android:gravity="center">

    <TextView
        android:id="@+id/doblabel_display"
        android:text="@string/dob_label"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textSize="@dimen/text_form"/>

    <EditText
        android:id="@+id/dobvalue"
        android:layout_width="0dp"
        android:layout_weight="2"
        android:layout_height="wrap_content"
        android:inputType="date"
        android:focusable="false"
        android:cursorVisible="false"/>

</LinearLayout>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:orientation="horizontal"
    android:gravity="center">

    <TextView
        android:id="@+id/mnumlabel_display"
        android:text="@string/mnum_label"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textSize="@dimen/text_form"/>

    <EditText
        android:id="@+id/mnumvalue"
        android:layout_width="0dp"
        android:layout_weight="2"
        android:layout_height="wrap_content"
        android:inputType="phone"
        android:focusable="false"
        android:cursorVisible="false"/>

</LinearLayout>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:orientation="horizontal"
    android:gravity="center">

    <TextView
        android:id="@+id/emaillabel_display"
        android:text="@string/email_label"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textSize="@dimen/text_form"/>

    <EditText
        android:id="@+id/emailvalue"
        android:layout_width="0dp"
        android:layout_weight="2"
        android:layout_height="wrap_content"
        android:inputType="textEmailAddress"
        android:focusable="false"
        android:cursorVisible="false"/>

</LinearLayout>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:orientation="horizontal"
    android:gravity="center">

    <TextView
        android:id="@+id/altnumlabel_display"
        android:text="@string/altnum_label"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textSize="@dimen/text_form"/>

    <EditText
        android:id="@+id/altnumvalue"
        android:layout_width="0dp"
        android:layout_weight="2"
        android:layout_height="wrap_content"
        android:inputType="phone"
        android:focusable="false"
        android:cursorVisible="false"/>

</LinearLayout>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="3"
    android:orientation="horizontal"
    android:gravity="center">

    <TextView
        android:id="@+id/homeadrlabel_display"
        android:text="@string/homeadr_label"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textSize="@dimen/text_form"/>

    <EditText
        android:id="@+id/homeadrvalue"
        android:layout_width="0dp"
        android:layout_weight="2"
        android:layout_height="wrap_content"
        android:inputType="text"
        android:focusable="false"
        android:cursorVisible="false"/>

</LinearLayout>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="3"
    android:orientation="horizontal"
    android:gravity="center">

    <TextView
        android:id="@+id/offadrlabel_display"
        android:text="@string/offadr_label"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textSize="@dimen/text_form"/>

    <EditText
        android:id="@+id/offadrvalue"
        android:layout_width="0dp"
        android:layout_weight="2"
        android:layout_height="wrap_content"
        android:inputType="text"
        android:focusable="false"
        android:cursorVisible="false"/>

</LinearLayout>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="3"
    android:orientation="horizontal"
    android:gravity="center">

    <TextView
        android:id="@+id/noteslabel_display"
        android:text="@string/notes_label"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textSize="@dimen/text_form"/>

    <EditText
        android:id="@+id/notesvalue"
        android:layout_width="0dp"
        android:layout_weight="2"
        android:layout_height="wrap_content"
        android:lines="3"
        android:inputType="text"
        android:focusable="false"
        android:cursorVisible="false"/>

</LinearLayout>

我注意到您正在使用 Weight inside a Linear Layout

请记住,权重的目的是根据 LinearLayout 的可用量 space 在 LinearLayout 内的视图之间分配不动产。

这样,如果 View A 的 weight 为 1,而 View B 的 weight 为 2,则 View A 将获得 LinearLayout 内 space 的 33%,View B 将获得其余部分。

这里要记住的关键因素是 weight 的整个概念取决于 LinearLayout 的房地产数量有限的想法。当您将 LinearLayout 放入 ScrollView.

时,这会发生变化

在此模式中,LinearLayout 可以根据需要增长 - 甚至超出屏幕限制,ScrollView 处理当前可见的部分。

由于LinearLayout现在需要尽可能多地增长,因此weight不再有任何意义,因为房地产是无限的。这就好像你要求一个 View 拿取无限量 space 的 33% - 它应该做什么?

如果您确定要使用可滚动的 LinearLayout,那么我建议从子视图中删除 weight 参数,并将所有子视图告知 wrap_content关于他们的身高(或者在 dp 中给他们一些其他的身高定义)。

希望这对您有所帮助。