I have been trying to implement a horizontal scroll view where the user selects from a list of images and it gets displayed at the centre of the screen.
Originally, my problem was that the scrolling was very erratic. I was implementing these using ontouch events. Basically, I needed to use ontouch events because I need to do the scrolling manually. Since I have a linear layout inside a horizontal scrollview, I found that I had to block the child (linear layout inside the horizontal scrollview) from sensing the touch event.
To fix it I followed what many posts recommend that you need to block children from having access to the ontouch event. So, I defined a new class that extends the Horizontal ScrollView and implemented an ontouch event and an onInterceptTouchEvent.
My problem is that this approach is not working and I continue to get the following message, since I made those changes:
java.lang.RuntimeException: Unable to start activity ComponentInf0{com.demo.touch/com.demo.touch.EltouchActivity}: java.lang.ClassCastException: com.demo.touch.EltouchActivity cannot be cast to android.view.View$OnTouchListener
I can’t figure out what is my problem. Can anyone help me with this? Any help will be greatly appreciated,
Richard
Here is the code for EltouchActivity (my main activity):
package com.demos.touch;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.View.OnTouchListener;
import android.widget.AbsListView.OnScrollListener;
import android.widget.HorizontalScrollView;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.ScrollView;
import android.widget.TextView;
public class EltouchActivity extends Activity implements OnClickListener{
ImageView main, cow, horse, rooster, geese, dog, duck, goat;
float[] x = new float[10];
float[] y = new float[10];
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.eltouch);
main = (ImageView) findViewById(R.id.ivMain);
cow = (ImageView) findViewById(R.id.ivCow);
horse = (ImageView) findViewById(R.id.ivHorse);
rooster = (ImageView) findViewById(R.id.ivRooster);
geese = (ImageView) findViewById(R.id.ivGeese);
dog = (ImageView) findViewById(R.id.ivDog);
goat = (ImageView) findViewById(R.id.ivGoat);
cow.setOnClickListener(this);
horse.setOnClickListener(this);
rooster.setOnClickListener(this);
geese.setOnClickListener(this);
dog.setOnClickListener(this);
goat.setOnClickListener(this);
MyHorScrollView hsv = (MyHorScrollView) findViewById(R.id.myhorscrlvw);
hsv.setOnTouchListener((OnTouchListener) this);
}
public void onClick(View arg0) {
switch(arg0.getId()){
case R.id.ivCow:
main.setImageResource(R.drawable.cow);
break;
case R.id.ivDog:
main.setImageResource(R.drawable.dog);
break;
case R.id.ivDuck:
main.setImageResource(R.drawable.duck);
break;
case R.id.ivDucklings:
main.setImageResource(R.drawable.ducklings);
break;
case R.id.ivGeese:
main.setImageResource(R.drawable.geeze);
break;
case R.id.ivGoat:
main.setImageResource(R.drawable.goat);
break;
}
}
}
This is my xml file:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/otherlayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/shark_background_colored">
<ImageView
android:layout_width="400dp"
android:layout_height="280dp"
android:src="@drawable/geeze"
android:layout_gravity="center_horizontal"
android:background="#e9ccdd"
android:id="@+id/ivMain" />
<com.demos.touch.MyHorScrollView
android:id="@+id/myhorscrlvw"
android:layout_width="950dp"
android:layout_height="304dp"
android:layout_gravity="center_horizontal"
android:scrollbars="none"
android:background="#ebee7c">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:id="@+id/horizontallayout"
android:background="#e9a4dd"
android:layout_gravity="center_vertical">
<ImageView
android:layout_width="200dp"
android:layout_height="200dp"
android:src="@drawable/cow"
android:layout_gravity="center_horizontal"
android:id="@+id/ivCow" />
<ImageView
android:layout_width="200dp"
android:layout_height="200dp"
android:src="@drawable/horse"
android:layout_gravity="center_horizontal"
android:id="@+id/ivHorse"
android:paddingLeft="25dp"/>
<ImageView
android:layout_width="200dp"
android:layout_height="200dp"
android:src="@drawable/rooster"
android:layout_gravity="center_horizontal"
android:id="@+id/ivRooster"
android:paddingLeft="25dp"/>
<ImageView
android:layout_width="200dp"
android:layout_height="200dp"
android:src="@drawable/geeze"
android:layout_gravity="center_horizontal"
android:id="@+id/ivGeese"
android:paddingLeft="25dp"/>
<ImageView
android:layout_width="200dp"
android:layout_height="200dp"
android:src="@drawable/dog"
android:layout_gravity="center_horizontal"
android:id="@+id/ivDog"
android:paddingLeft="25dp"/>
<ImageView
android:layout_width="200dp"
android:layout_height="200dp"
android:src="@drawable/duck"
android:layout_gravity="center_horizontal"
android:id="@+id/ivDuck"
android:paddingLeft="25dp"/>
<ImageView
android:layout_width="200dp"
android:layout_height="200dp"
android:src="@drawable/goat"
android:layout_gravity="center_horizontal"
android:id="@+id/ivGoat"
android:paddingLeft="25dp"/>
</LinearLayout>
</com.arturo.ejemplodetouch.MyHorScrollView>
</LinearLayout>
This is the class that extends Horizontal ScrollView:
package com.demos.touch;
import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.widget.HorizontalScrollView;
import android.widget.TextView;
public class MyHorScrollView extends HorizontalScrollView{
public MyHorScrollView(Context context) {
super(context);
}
public MyHorScrollView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public MyHorScrollView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public boolean onInterceptTouchEvent(MotionEvent ev) {
return true;
}
public boolean onTouch(View arg0, MotionEvent arg1) {
int action = arg1.getAction() & MotionEvent.ACTION_MASK;
float currentX = 0;
int pointerIndex = (arg1.getAction() & MotionEvent.ACTION_POINTER_INDEX_MASK) >>
MotionEvent.ACTION_POINTER_INDEX_SHIFT;
int pointerId = arg1.getPointerId(pointerIndex);
float downX=0, totalX;
int scrollByX = 0;
float[] x = new float[10];
float[] y = new float[10];
switch(action){
case MotionEvent.ACTION_DOWN:
case MotionEvent.ACTION_POINTER_DOWN:
downX=(int)arg1.getRawX();
currentX=0;
scrollByX = 0;
break;
case MotionEvent.ACTION_UP:
case MotionEvent.ACTION_POINTER_UP:
case MotionEvent.ACTION_CANCEL:
currentX=(int)arg1.getRawX();
scrollByX = (int)(downX - currentX);
arg0.scrollBy(scrollByX, 0);//end scrolling
break;
case MotionEvent.ACTION_MOVE:
currentX=(int)arg1.getRawX();
scrollByX = (int)(downX - currentX);//begin scrolling
arg0.scrollBy(scrollByX, 0);
downX = currentX;
break;
}
return true;
}
}