In my scroll view i want it to kind of move when it get's to the bottom like you know in android when you reach the bottom of a menu and it keeps moving then moves back, like stretches? I was wanting to impliment that into my ScrollView but wasn't sure how, could anyone help?

Here's an example of one of the documents i would like to do it in:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    >
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent" 
        android:background="@drawable/intro_background"
        android:padding="20dp"
        android:scrollbarFadeDuration="0"
        >
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            >
            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="Here at Out and up we try our hardest to make your experience awesome!\n\nWe offer a massive variety of activities for you to take part in. From jumping across the high ropes to Army assault courses! \n\nWe have activities that everyone will enjoy!"  
                android:textSize="20dp"
                android:textColor="#000000"/>
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:src="@drawable/montage"/>
            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="To find out more about our activities go to our 'Book' page"
                android:textSize="20dp"
                android:textColor="#000000"/>
        </LinearLayout> 
    </ScrollView>
</LinearLayout>

I think you looking for EdgeEffect, read this post from Kirik

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.