Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm attempting to create a layout designed to display a very tall image using a scrollview. The problem I'm having is the image simply does not display at all if the dimensions are taller than my actual screen. To clarify, images display fine using my layout as long as the photo is not larger than the screen itself. If the image is larger than the screen, it just displays completely blank (but it does scroll correctly). Here is the XML for my layout:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000000"
    android:orientation="vertical"  >

            <TextView  
                android:layout_width="fill_parent" 
                android:layout_height="wrap_content"
                android:gravity="center"
                android:textAppearance="?android:attr/textAppearanceLarge"
                android:text="Tutorial 1"  />

            <View
                android:layout_width="fill_parent"
                android:layout_height="1dp"
                android:background="#ff106510"
                android:layout_marginLeft="6dp"
                android:layout_marginRight="6dp"  />

    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/tutorial1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fillViewport="true"  >

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

            <ImageView
                android:id="@+id/imageView1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:scaleType="centerInside"
                android:src="@drawable/test5"  />                   

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:paddingLeft="80dp"
                android:paddingRight="80dp"
                android:background="@android:drawable/bottom_bar"
                android:gravity="center_vertical"  >

                <Button  
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:gravity="center"
                    android:text="GO!"  />
            </LinearLayout>
        </LinearLayout>
    </ScrollView>
</LinearLayout> 

Is there any way to get the image to display and scroll correctly? For reference my image is going to be roughly 720x2000, and I'm trying to make it so I can scroll up and down the photo at will. Any suggestions as to how this might be accomplished would be greatly appreciated. Thanks for any possible help!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.