0

我正在使用 ImageView,确切地说它是扩展 ImageView 的 ImageMap,在具有以下代码部分的 ScrollView 中:

<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:ctc="http://schemas.android.com/apk/res/de.svennergr.htn"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@drawable/backrepeat"
        android:orientation="vertical"
        android:padding="10dp"
        android:weightSum="1" >

    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="15dp"
            android:layout_marginTop="15dp"
            android:baselineAligned="false"
            android:orientation="horizontal" >

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="fill_parent"
                android:orientation="vertical"
                android:weightSum="1" >

                <TextView
                    android:id="@+id/login_text"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_gravity="bottom"
                    android:layout_weight="0.3333"
                    android:paddingTop="10dp"
                    android:text="Login:" />

                <TextView
                    android:id="@+id/password_text"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="0.3333"
                    android:paddingTop="10dp"
                    android:text="Password:" />

                <TextView
                    android:id="@+id/email_text"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="0.3333"
                    android:paddingTop="10dp"
                    android:text="E-Mail:"
                    android:visibility="gone" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:orientation="vertical"
                android:weightSum="1" >

                <EditText
                    android:id="@+id/login_edit"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_weight="0.3333"
                    android:ems="10" >
                </EditText>

                <EditText
                    android:id="@+id/passwd_edit"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_weight="0.3333"
                    android:ems="10"
                    android:inputType="textPassword" />

                <EditText
                    android:id="@+id/email_edit"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_weight="0.3333"
                    android:ems="10"
                    android:inputType="textEmailAddress"
                    android:visibility="gone" />
            </LinearLayout>
        </LinearLayout>

        <Button
            android:id="@+id/login"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:background="@drawable/button"
            android:text="Login"
            android:textColor="@color/button_start" />

        <Button
            android:id="@+id/register"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="3dp"
            android:background="@drawable/button"
            android:text="@string/register"
            android:textColor="@color/button_start" />

        <de.svennergr.htn.ImageMap
            android:id="@+id/imap"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_marginTop="10dp"
            android:adjustViewBounds="true"
            android:scaleType="centerCrop"
            android:src="@drawable/europa"
            ctc:map="europa" />
    </LinearLayout>

</ScrollView>
</LinearLayout>

我已经发布了整个 XML 代码,以便您更好地了解。

Imageview 应该在显示的底部显示带有“fill_parent”的图像,但是图像正在调整大小并且没有显示到底部:

具有调整大小的 ImageView 的图像

谢谢你的帮助。

4

1 回答 1

1

尝试将此属性添加到您的滚动视图:

android:FillViewport="true"          

已编辑。

于 2013-01-03T15:33:18.103 回答