LoginSignup
1
0

More than 3 years have passed since last update.

[Android] タッチの座標を確認する

Last updated at Posted at 2019-11-13

タッチの座標をお手軽に確認する方法の紹介。
input tapするときの座標を確認するときに便利。

Screenshot_1573656099_.png

開発者オプションの"Pointer location"機能を有効にすることで、
画面上部にタッチイベントの詳細が表示される。

タッチ数・座標・測度・強さ・大きさおよび、タッチの軌跡が確認できる。

Screenshot_1573656163.png

"Pointer Location"機能は、adbでも制御できる。

# Pointer Locationを有効化
adb shell settings put system pointer_location 1

# Pointer Locationを無効化
adb shell settings put system pointer_location 0
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0