-4

有人知道为什么我的布局是这样的吗?

所有元素都是 layout_height="wrap_content"...

我不知道为什么,如果我添加滚动视图,我必须看到那里的所有空白。

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

        <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="466dp"
        android:background="@drawable/fondo"
        android:orientation="vertical" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:text="@string/generandoDemandaTitulo"
            tools:context=".GenerandoDemanda" />

        <EditText
            android:id="@+id/editTextTitulo"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            tools:ignore="TextFields" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:text="@string/generandoDemandaDescripcion"
            tools:context=".GenerandoDemanda" />

        <EditText
            android:id="@+id/editTextDescripcion"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            tools:ignore="TextFields" />

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >

            <TextView
                android:id="@+id/textoAmbito"
                android:layout_weight="1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:text="@string/generandoDemandaAmbito" />

            <Button
                android:id="@+id/botonSeleccionarAmbito"
                android:layout_weight="2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical|right|center_horizontal"
                android:layout_marginLeft="20dp"
                android:layout_marginRight="20dp"
                android:gravity="center"
                android:text="@string/generandoDemandaBotonAmbito"
                android:onClick="showMenuAmbito" />
        </LinearLayout>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:text="@string/generandoDemandaDesde" />

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:gravity="left"
            android:orientation="horizontal" >

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="10dp"
                android:layout_weight="1"
                android:onClick="showDatePickerDialogDesde"
                android:text="@string/eligeFecha" />

            <TextView
                android:id="@+id/fechaDesde"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="10dp"
                android:layout_weight="1" />

            <TextView
                android:id="@+id/horaDesde"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1" />
        </LinearLayout>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:layout_marginTop="15sp"
            android:text="@string/generandoDemandaHasta" />

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:gravity="center"
            android:orientation="horizontal" >

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="10dp"
                android:layout_weight="1"
                android:onClick="showDatePickerDialogHasta"
                android:text="@string/eligeFecha" />

            <TextView
                android:id="@+id/fechaHasta"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="10dp"
                android:layout_weight="1" />

            <TextView
                android:id="@+id/horaHasta"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="2" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="3"
                android:orientation="horizontal" >

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/generandoDemandaPrecio" />

                <EditText
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:inputType="numberDecimal" />
            </LinearLayout>

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="right"
                android:layout_marginLeft="20dp"
                android:layout_weight="1"
                android:gravity="center_vertical|center"
                android:text="@string/generandoDemandaBotonZona" >
            </Button>
        </LinearLayout>

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="53dp"
        android:layout_weight="4"
        android:gravity="left"
        android:orientation="horizontal" 
        android:layout_marginTop="10dp">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/generandoDemandaPublica" />

            <ToggleButton
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textOff="Publico"
                android:textOn="Privado" />
    </LinearLayout>

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:layout_weight="1"
    android:drawableLeft="@drawable/clearcache"
    android:drawablePadding="10dp"
    android:gravity="center"
    android:text="@string/generandoDemandaBotonCrear" />

    </LinearLayout>

</LinearLayout>
</ScrollView>

那么,有人可以帮助我吗?哪里可能是错误或其他东西。

4

3 回答 3

2
<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="466dp"
                               ^^^^^
        android:background="@drawable/fondo"
        android:orientation="vertical" >

您提供466 dp高度替换它wrap_content

于 2012-10-30T08:40:00.503 回答
0

这是我在父 ScrollView 中的 LinearLayout。在添加 ScrollView 之前,我将图像作为背景。将 ScrollView 的背景而不是在 LinearLayout 中已经解决了。

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="466dp"
    android:background="@drawable/fondo"
    android:orientation="vertical" >
于 2012-11-08T09:11:46.473 回答
0

试试这样;

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="wrap_content" 
     android:scaleType="fitXY"
     android:background="@drawable/backgroundlogin">

    <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
于 2013-08-22T17:56:25.243 回答