ScrollView错误中的RelativeLayout

时间:2014-06-12 10:46:32

标签: android android-layout scrollview relativelayout

我尝试制作一个包含许多textVieweditText控件的表单,因此我尝试使用scrollview,因为屏幕无法显示所有内容他们

但是当我添加到某组textview和scrollview时,下一个显示在屏幕的顶部而不是在前一组的下方。

下面是我的xml,请帮忙!

XML文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".InsertJob" >

<ScrollView
    android:id="@+id/scrollView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true" >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="358dp"
        android:orientation="vertical" >
        <TextView
            android:id="@+id/JobNameTV"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:layout_marginLeft="20dp"
            android:layout_marginTop="20dp"
            android:text="@string/name" />

        <EditText
            android:id="@+id/JobNameET"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignBaseline="@+id/JobNameTV"
            android:layout_alignBottom="@+id/JobNameTV"
            android:layout_marginLeft="70dp"
            android:layout_marginRight="20dp"
            android:layout_toRightOf="@+id/JobNameTV"
            android:ems="10"
            android:inputType="textPersonName" />

        <TextView
            android:id="@+id/JobDateTV"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/JobNameTV"
            android:layout_below="@+id/JobNameET"
            android:layout_marginTop="25dp"
            android:text="@string/date" />

        <EditText
            android:id="@+id/JobDateET"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignBaseline="@+id/JobDateTV"
            android:layout_alignBottom="@+id/JobDateTV"
            android:layout_alignLeft="@+id/JobNameET"
            android:layout_marginRight="20dp"
            android:ems="10"
            android:hint="@string/date_example"
            android:inputType="date" >

            <requestFocus />
        </EditText>

        <TextView
            android:id="@+id/JobTimeStartTV"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/JobDateTV"
            android:layout_below="@+id/JobDateTV"
            android:layout_marginTop="25dp"
            android:text="Jam Mulai" />

        <EditText
            android:id="@+id/JobTimeStartET"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignBaseline="@+id/JobTimeStartTV"
            android:layout_alignBottom="@+id/JobTimeStartTV"
            android:layout_alignLeft="@+id/JobDateET"
            android:layout_marginRight="20dp"
            android:ems="10"
            android:hint="@string/timeexample"
            android:inputType="time" />   

        <TextView
            android:id="@+id/JobTimeEndTV"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/JobDateTV"
            android:layout_below="@+id/JobTimeStartTV"
            android:layout_marginTop="25dp"
            android:text="Jam Selesai" />

        <EditText
            android:id="@+id/JobTimeEndET"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignBaseline="@+id/JobTimeEndTV"
            android:layout_alignBottom="@+id/JobTimeEndTV"
            android:layout_alignLeft="@+id/JobDateET"
            android:layout_marginRight="20dp"
            android:ems="10"
            android:hint="@string/timeexample"
            android:inputType="time" />   

        <TextView
            android:id="@+id/JobPlaceTV"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/JobTimeEndTV"
            android:layout_below="@+id/JobTimeEndET"
            android:layout_marginTop="25dp"
            android:text="@string/place" />

        <EditText
            android:id="@+id/JobPlaceET"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignBaseline="@+id/JobPlaceTV"
            android:layout_alignBottom="@+id/JobPlaceTV"
            android:layout_alignLeft="@+id/JobTimeEndET"
            android:layout_marginRight="20dp"
            android:ems="10"
            android:inputType="text" />

        <TextView
            android:id="@+id/JobDetailTV"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/JobPlaceTV"
            android:layout_below="@+id/JobPlaceET"
            android:layout_marginTop="40dp"
            android:text="Detail" />

        <EditText
            android:id="@+id/JobDetailET"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/JobPlaceET"
            android:layout_alignBaseline="@+id/JobDetailTV"
            android:layout_marginRight="20dp"
            android:ems="10"
            android:inputType="textMultiLine" />

        <TextView
            android:id="@+id/SongListTV"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/JobDetailTV"
            android:layout_below="@+id/JobDetailET"
            android:layout_marginTop="20dp"
            android:text="Lagu 1" />

        <EditText
            android:id="@+id/SongListET"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/JobDetailET"
            android:layout_alignBaseline="@+id/SongListTV"
            android:ems="10"
            android:inputType="text" />

    </RelativeLayout>
</ScrollView>

<Button
    android:id="@+id/LogoutBtn"
    android:layout_width="24dp"
    android:layout_height="24dp"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:layout_marginBottom="20dp"
    android:layout_marginRight="20dp"
    android:background="@drawable/logout"
    android:onClick="logout" />

<Button
    android:id="@+id/ConfirmBtn"
    android:layout_width="24dp"
    android:layout_height="24dp"
    android:layout_alignBottom="@+id/LogoutBtn"
    android:layout_marginLeft="20dp"
    android:background="@drawable/confirm" />

</RelativeLayout>

3 个答案:

答案 0 :(得分:0)

  1. EditText JobDateET缺少属性"android:layout_layout_below="@+id/JobDateTV"
  2. EditText JobTimeStartET缺少属性"android:layout_layout_below="@+id/JobTimeStartTV"
  3. EditText JobTimeStartET缺少属性"android:layout_layout_below="@+id/JobTimeStartTV"

答案 1 :(得分:0)

试试这个.......

<TextView
     android:id="@+id/SongListTV"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_below="@+id/JobDetailTV"
     android:layout_marginTop="20dp"
     android:text="Lagu 1"/>

答案 2 :(得分:0)

// Try this way,hope this will help you to solve your problem.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".InsertJob" >

    <ScrollView
        android:id="@+id/scrollView1"
        android:layout_width="match_parent"
        android:layout_height="358dp">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:padding="20dp">

            <TextView
                android:id="@+id/JobNameTV"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_alignParentTop="true"
                android:text="@string/name" />

            <EditText
                android:id="@+id/JobNameET"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignBaseline="@id/JobNameTV"
                android:layout_marginLeft="70dp"
                android:layout_toRightOf="@id/JobNameTV"
                android:ems="10"
                android:inputType="textPersonName" />

            <TextView
                android:id="@+id/JobDateTV"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/JobNameET"
                android:layout_marginTop="25dp"
                android:text="@string/date" />

            <EditText
                android:id="@+id/JobDateET"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignLeft="@id/JobNameET"
                android:layout_alignBaseline="@id/JobDateTV"
                android:layout_toRightOf="@id/JobDateTV"
                android:ems="10"
                android:hint="@string/date_example"
                android:inputType="date" >

            </EditText>

            <TextView
                android:id="@+id/JobTimeStartTV"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/JobDateTV"
                android:layout_marginTop="25dp"
                android:text="Jam Mulai" />

            <EditText
                android:id="@+id/JobTimeStartET"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignLeft="@id/JobDateET"
                android:layout_alignBaseline="@id/JobTimeStartTV"
                android:layout_toRightOf="@id/JobTimeStartTV"
                android:ems="10"
                android:hint="@string/timeexample"
                android:inputType="time" />

            <TextView
                android:id="@+id/JobTimeEndTV"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/JobTimeStartTV"
                android:layout_marginTop="25dp"
                android:text="Jam Selesai" />

            <EditText
                android:id="@+id/JobTimeEndET"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignLeft="@id/JobTimeStartET"
                android:layout_alignBaseline="@id/JobTimeEndTV"
                android:layout_toRightOf="@id/JobTimeEndTV"
                android:ems="10"
                android:hint="@string/timeexample"
                android:inputType="time" />

            <TextView
                android:id="@+id/JobPlaceTV"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/JobTimeEndTV"
                android:layout_marginTop="25dp"
                android:text="@string/place" />

            <EditText
                android:id="@+id/JobPlaceET"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignLeft="@id/JobTimeEndET"
                android:layout_alignBaseline="@id/JobPlaceTV"
                android:layout_toRightOf="@id/JobPlaceTV"
                android:ems="10"
                android:inputType="text" />

            <TextView
                android:id="@+id/JobDetailTV"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/JobPlaceTV"
                android:layout_marginTop="40dp"
                android:text="Detail" />

            <EditText
                android:id="@+id/JobDetailET"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignLeft="@id/JobPlaceET"
                android:layout_alignBaseline="@id/JobDetailTV"
                android:layout_toRightOf="@id/JobDetailTV"
                android:ems="10"
                android:inputType="textMultiLine" />

            <TextView
                android:id="@+id/SongListTV"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/JobDetailTV"
                android:layout_marginTop="20dp"
                android:text="Lagu 1" />

            <EditText
                android:id="@+id/SongListET"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignLeft="@id/JobDetailET"
                android:layout_alignBaseline="@id/SongListTV"
                android:layout_toRightOf="@id/SongListTV"
                android:ems="10"
                android:inputType="text" />

        </RelativeLayout>
    </ScrollView>

    <Button
        android:id="@+id/LogoutBtn"
        android:layout_width="24dp"
        android:layout_height="24dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_marginBottom="20dp"
        android:layout_marginRight="20dp"
        android:background="@drawable/logout"
        android:onClick="logout" />

    <Button
        android:id="@+id/ConfirmBtn"
        android:layout_width="24dp"
        android:layout_height="24dp"
        android:layout_alignBottom="@+id/LogoutBtn"
        android:layout_marginLeft="20dp"
        android:background="@drawable/confirm" />

</RelativeLayout>