如何使用父布局滚动可扩展列表视图

时间:2014-02-07 19:09:18

标签: android android-layout android-listview

使用完整布局滚动可展开列表视图时出现问题。

我正在尝试创建一个注册页面,其中包含用户名和密码等文本字段,以及图片中显示的可展开列表视图。

enter image description here enter image description here

页面加载的时刻可以看到底部注册新按钮,但是如果我按下可展开列表视图,我无法向下滚动到底部,直到我折叠列表视图。

以下是我附加的布局文件。

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"

          android:orientation="vertical"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:padding="10dip">

          <!-- Full Name Label -->
          <TextView android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:textColor="#372c24"
                android:text="Full Name"/>

          <EditText android:id="@+id/reg_fullname"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="5dip"
                android:singleLine="true"
                android:layout_marginBottom="20dip"/>
          <!--  Email Label -->
          <TextView android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:textColor="#372c24"
                android:text="Email"/>

          <EditText
              android:id="@+id/reg_email"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              android:layout_marginBottom="20dip"
              android:layout_marginTop="5dip"
              android:ems="10"
              android:singleLine="true" >

              <requestFocus />
          </EditText>

          <!-- Password Label -->
          <TextView android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:textColor="#372c24"
                android:text="Password"/>

          <EditText android:id="@+id/reg_password"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:password="true"
                android:singleLine="true"
                android:layout_marginTop="5dip"/>

        <ExpandableListView
        android:id="@+id/cat_listView"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        </ExpandableListView>
          <!-- Register Button -->

        <Button
              android:id="@+id/btnRegister"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              android:layout_marginTop="10dip"
              android:text="Register New Account" />


          <!-- Link to Login Screen -->

          <TextView
              android:id="@+id/link_to_login"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              android:layout_marginBottom="40dip"
              android:layout_marginTop="40dip"
              android:gravity="center"
              android:text="Already has account! Login here"
              android:textColor="#025f7c"
              android:textSize="20dip" />

</LinearLayout>

我想知道,布局文件可能存在什么问题?提前谢谢。

1 个答案:

答案 0 :(得分:0)

将它们放在两种不同的布局中。 也就是说,我建议你:

- RelativeLayout
  -- ScrollView android:layout_alignParentTop="true" android:above="@+id/layout1"
    --- LinearLayout  (basically what you have above, most of it)
  -- LinearLayout android:id="@+id/layout1" android:layout_alignParentBottom="true"
    --- RegisterButton

让LinearLayout与寄存器按钮对齐父底部。 滚动视图与父级顶部和下部布局对齐。