0

高さのあるラップコンテンツを使用している線形レイアウトを使用しています。しかし、ラップコンテンツを提供した後でも、すべての要素の後に余分なスペースが得られます。ただし、高さを「220dp」に手動で指定すると、適切にフォーマットされます。ラップコンテンツを使用して、この問題を解決したいと考えています。貴重なご意見をお聞かせください。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="wrap_content"
    android:layout_weight="1"
    android:id="@+id/layout3" android:background="@drawable/question_backgrund"
    android:orientation="vertical">
    <LinearLayout android:layout_width="match_parent"
        android:layout_height="wrap_content" xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="horizontal">
        <TextView android:id="@+id/question_number1"
            android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:layout_marginLeft="5dp" android:textColor="#FF0000"
            android:text="1" />
        <ImageView android:id="@+id/answer_icon1"
            android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:layout_marginLeft="220dp" android:contentDescription="Answer status"
            android:src="@drawable/answer_status" android:visibility="invisible" />
    </LinearLayout>
    <LinearLayout android:layout_width="match_parent"
        android:layout_height="wrap_content" xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="horizontal">
        <ImageView android:id="@+id/comment_icon"
            android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:background="@android:color/transparent"
            android:layout_marginLeft="15dp" android:layout_marginTop="10dp"
            android:src="@drawable/write_comments_icon" />
        <TextView android:id="@+id/comment_title"
            android:layout_width="match_parent" android:layout_height="wrap_content"
            android:layout_marginTop="10dp" android:layout_marginLeft="20dp"
            android:text="title" />
    </LinearLayout>
    <LinearLayout android:layout_width="match_parent"
        android:layout_height="wrap_content" xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="horizontal">
        <LinearLayout android:layout_width="match_parent"
            android:layout_height="wrap_content" xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal">
            <EditText android:id="@+id/write_comments"
                android:layout_width="wrap_content" android:layout_marginLeft="20dp"
                android:layout_marginTop="15dp" android:layout_height="100dp"
                android:ems="10" />
            <Button android:id="@+id/submit" android:layout_width="wrap_content"
                android:layout_marginTop = "10dp"
                android:background="@drawable/done"
                android:layout_height="wrap_content" android:layout_marginLeft="10dp" />
        </LinearLayout>
    </LinearLayout>
</LinearLayout>
4

1 に答える 1

1

android:layout_weight="1"メイン レイアウトにがあるのはなぜですか? どのくらいのスペースがありますか? 一部の要素には自然なパディングがあります。8 dp 未満の場合は、そこから来る可能性があります。メインレイアウトの背景画像から来ているのかもしれませんが、9patchの画像ですか?画像の完全なスペースを取るようにコンテンツを正しく叫んでいますか?

于 2013-03-31T09:12:01.820 に答える