Android studio kaydırarak activity değiştirme
28.10.2020 - 07:27
public boolean onTouchEvent (MotionEvent touchEvent) {
switch (touchEvent.getAction())
{
case MotionEvent.ACTION_DOWN:
x1 = touchEvent.getX();
y1 = touchEvent.getY();
break;
case MotionEvent.ACTION_UP:
x2 = touchEvent.getX();
y2 = touchEvent.getY();
if (x1 > x2)
{
Intent i = new Intent(dizisecme.this, diziler2.class);
startActivity(i);
}
else if (x1 > x2)
{
Intent i = new Intent(dizisecme.this, filmactivity.class);
startActivity(i);
}
break;
}
return false;
}
kaydırarak sayfa değiştirme kodu scrollview bulunduğu sayfalarda çalışmıyor nasıl düzeltebilirim
116
Görüntülenme
0 Beğeni