Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm new to developing with Android and I've come across a problem which seems to be a bug in Android 2.2 and was wondering if anyone has a good work around (code would be useful)

If I place a button inside a scrollview I'm unable to click this button till the scrollbars have faded.

Any help would be great.

This is what I've tried, I know its not right, but not sure how to correct :(

package h2o.mobile.pocketplanets;

import android.content.Context;
import android.util.AttributeSet;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.widget.ScrollView;
import android.widget.Scroller;

public class CustomScrollView extends ScrollView {

    private Scroller mScroller;

    public CustomScrollView(Context context, AttributeSet attrs) {
        super(context, attrs);
        mScroller = new Scroller(getContext()); 
    }

    @Override
    protected void onScrollChanged(int l, int t, int oldl, int oldt){
//Think I need to do something here, but no idea what!!!!
    }

    @Override
    public boolean onTouchEvent(MotionEvent me){
        boolean scrollingV=true;
        switch(me.getAction()){
        case MotionEvent.ACTION_UP:
        case MotionEvent.ACTION_CANCEL:
            scrollingV=false;
        }
        super.onTouchEvent(me);
        return scrollingV;
    }

    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev){
        switch(ev.getAction()){
            case MotionEvent.ACTION_UP:
            case MotionEvent.ACTION_CANCEL:
            return false;
        }
        return super.onInterceptTouchEvent(ev);
    }


}

Front end

<?xml version="1.0" encoding="utf-8"?>
<h2o.mobile.pocketplanets.CustomScrollView 
    android:id="@+id/scrollView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical"
        android:gravity="center"
        android:background="@drawable/bg_stars">

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/s_welcome_message"/>

        <TableLayout
            android:id="@+id/tableLayout1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10px">

            <TableRow
                android:id="@+id/tableRow1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:layout_marginBottom="1px">

                <ImageButton
                    android:id="@+id/imgbTheSun"
                    android:background="@null"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@drawable/img_thesun"
                    android:clickable="true"
                    android:onClick="imgbTheSunClick" />
            </TableRow>

            <TableRow
                android:id="@+id/tableRow1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:layout_marginBottom="1px">

                <ImageButton
                    android:id="@+id/imgbMercury"
                    android:background="@null"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@drawable/img_mercury"
                    android:clickable="true"
                    android:onClick="imgbMercuryClick" />
            </TableRow>

            <TableRow
                android:id="@+id/tableRow2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:layout_marginBottom="1px">

                <ImageButton
                    android:id="@+id/imgbVenus"
                    android:background="@null"
                    android:layout_marginBottom="1px"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@drawable/img_venus"
                    android:clickable="true"
                    android:onClick="imgbVenusClick" />
            </TableRow>

            <TableRow
                android:id="@+id/tableRow3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:layout_marginBottom="1px">

                <ImageButton
                    android:id="@+id/imgbEarth"
                    android:background="@null"
                    android:layout_marginBottom="1px"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@drawable/img_earth"
                    android:clickable="true"
                    android:onClick="imgbEarthClick" />
            </TableRow>

            <TableRow
                android:id="@+id/tableRow4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:layout_marginBottom="1px">

                <ImageButton
                    android:id="@+id/imgbMars"
                    android:background="@null"
                    android:layout_marginBottom="1px"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@drawable/img_mars"
                    android:clickable="true"
                    android:onClick="imgbMarsClick" />
            </TableRow>

            <TableRow
                android:id="@+id/tableRow5"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:layout_marginBottom="1px">

                <ImageButton
                    android:id="@+id/imgbJupiter"
                    android:background="@null"
                    android:layout_marginBottom="1px"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@drawable/img_jupiter"
                    android:clickable="true"
                    android:onClick="imgbJupiterClick" />
            </TableRow>

            <TableRow
                android:id="@+id/tableRow6"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:layout_marginBottom="1px">

                <ImageButton
                    android:id="@+id/imgbSaturn"
                    android:background="@null"
                    android:layout_marginBottom="1px"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@drawable/img_saturn"
                    android:clickable="true"
                    android:onClick="imgbSaturnClick" />
            </TableRow>

            <TableRow
                android:id="@+id/tableRow7"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:layout_marginBottom="1px">

                <ImageButton
                    android:id="@+id/imgbUranus"
                    android:background="@null"
                    android:layout_marginBottom="1px"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@drawable/img_uranus"
                    android:clickable="true"
                    android:onClick="imgbUranusClick" />
            </TableRow>

            <TableRow
                android:id="@+id/tableRow8"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:layout_marginBottom="1px">

                <ImageButton
                    android:id="@+id/imgbNeptune"
                    android:background="@null"
                    android:layout_marginBottom="1px"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@drawable/img_neptune"
                    android:clickable="true"
                    android:onClick="imgbNeptuneClick" />
            </TableRow>

        </TableLayout>

    </LinearLayout>

</h2o.mobile.pocketplanets.CustomScrollView>
share|improve this question
Can you post your code? – anddev Dec 7 '11 at 10:39
post your code. – user493244 Dec 7 '11 at 10:48
have posted some code – Martin Dec 7 '11 at 11:39
I did read on another post here somewhere that they did this: Override the onScrollChanged then sent the ScrollView a MotionEvent via OnTouchEvent when the bounds are reached to simulate a user touch, but got no idea how to do this – Martin Dec 7 '11 at 14:53
Any one got an idea please? – Martin Dec 9 '11 at 10:46

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.