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>