ScrollView中的ImageView调整错误

时间:2013-01-03 15:31:12

标签: android imageview scrollview

我正在使用ImageView,正是它是一个ImageMap,在ScrollView中扩展了ImageView,其代码如下:

<?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”的图像,但是图像正在调整大小并且没有显示在底部:

Image with the resized ImageView

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

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

android:FillViewport="true"          

编辑。