-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 を追加する前に、背景として画像がありました。LinearLayout ではなく、ScrollView の背景を配置することで解決しました。

<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 に答える