画面タッチは onTouchEvent を使えばを検出でき、その後に指を離した等は MotionEvent から状況を取得できます。
Android Studio
2024.1.1
2024.1.1
onTouchEvent
onTouchEventでのタッチ反応はMotionEventの ACTION_DOWN、あるいは ACTION_UP から取得することができます。
またMotionEventではタッチの移動も取り出せるので、画像などをドラッグしていくことが可能です。
MotionEvent
MotionEvent の関連はたくさんありますがよく使うメソッドはこちら
- getX(), getY()
- スクリーンの座標(pixel)
- getAction()
- ACTION_DOWN
- タッチダウン
- ACTION_MOVE
- タッチしたまま移動
- ACTION_UP
- タッチアップ
- ACTION_CANCEL
- UPとDOWNが同時に発生した
- ACTION_DOWN
- getDownTime()
- press downした時間
- getEventTime()
- イベント発生時間、uptimeMillis「ブートからの時間(msec)」
- getPressure()
- タッチ圧力
画面がタッチされた時にonTouchEventが呼ばれ
どのMotionEventなのかswitchで振り分けていきます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
@Override public boolean onTouchEvent(MotionEvent motionEvent) { switch (motionEvent.getAction()) { case MotionEvent.ACTION_DOWN: // something to do break; case MotionEvent.ACTION_UP: // something to do break; case MotionEvent.ACTION_MOVE: // something to do break; case MotionEvent.ACTION_CANCEL: // something to do break; } return false; } |
サンプルコード
画面タッチでその情報が表示され、ボタンタップで表示がリセットされるサンプルです。
MainActivity.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
//package com.example.testontouchevent; import android.os.Bundle; import androidx.activity.EdgeToEdge; import androidx.appcompat.app.AppCompatActivity; import androidx.core.graphics.Insets; import androidx.core.view.ViewCompat; import androidx.core.view.WindowInsetsCompat; import android.view.MotionEvent; import android.widget.Button; import android.widget.TextView; public class MainActivity extends AppCompatActivity { private final StringBuffer info = new StringBuffer("Test onTouchEvent\n\n"); private TextView textView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); EdgeToEdge.enable(this); setContentView(R.layout.activity_main); ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main), (v, insets) -> { Insets systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars()); v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom); return insets; }); textView = findViewById(R.id.text_view); Button button = findViewById(R.id.button); button.setOnClickListener( v -> { info.delete(0, info.length()); textView.setText(info); }); } @Override public boolean onTouchEvent(MotionEvent motionEvent) { switch (motionEvent.getAction()) { case MotionEvent.ACTION_DOWN: info.append("ACTION_DOWN\n"); info.append("Pressure"); info.append(motionEvent.getPressure()); info.append("\n"); info.append("x1:"); info.append(motionEvent.getX()); info.append("\n"); info.append("y1:"); info.append(motionEvent.getY()); info.append("\n\n"); break; case MotionEvent.ACTION_UP: info.append("ACTION_UP\n"); info.append("x2:"); info.append(motionEvent.getX()); info.append("\n"); info.append("y2:"); info.append(motionEvent.getY()); info.append("\n"); long eventDuration2 = motionEvent.getEventTime() - motionEvent.getDownTime(); info.append("duration: "); info.append(eventDuration2); info.append(" msec\n\n"); break; case MotionEvent.ACTION_MOVE: info.append("ACTION_MOVE\n"); break; case MotionEvent.ACTION_CANCEL: info.append("ACTION_CANCEL\n"); break; } textView.setText(info); return false; } } |
レイアウトファイルです
activity_main.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/main" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <TextView android:id="@+id/text_view" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="30dp" android:layout_marginEnd="16dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintTop_toBottomOf="@+id/button" app:layout_constraintVertical_bias="1.0" /> <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/button" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintVertical_bias="0.05" /> </androidx.constraintlayout.widget.ConstraintLayout> |
strings.xml
1 2 3 4 |
<resources> <string name="app_name">Your App Name</string> <string name="button">Button</string> </resources> |
タッチ期間は
long eventDuration = motionEvent.getEventTime() – motionEvent.getDownTime();
で計算します
onTouchEventとは違いますが、似たものとしてonTouchがあります。これを使って画像などをドラッグすること等ができます。
アイコン画像をドラッグしてごみ箱に入れるなどの、ドラッグをAndroidでやる場合にonTouchを使います。タッチした指の動きに合わせてl...
References:
onTouchListener | Android Developers
MotionEvent | Android Developers