問題タブ [android-8.0-oreo]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - adb shellコマンドでAndroid端末の画面ON/OFFを確認する方法
mScreenOn=true
または を使用して、デバイスの画面のオンまたはオフを確認しようとしましたmPowerState=SCREEN_BRIGHT_BIT
。ただし、次のコマンドは最新の Android バージョンでは機能しません。何も返していません
次のコマンドは Android で正常に動作します - 4.3 Jelly Bean
input_method dumpsys の使用
adb shell dumpsys input_method | grep mScreenOn
パワーダンプシスの使用
adb shell dumpsys power | grep mScreenOn
またadb shell dumpsys power | grep mPowerState
最新のAndroidバージョン(Lollipop、Nougat、Oreo、Pieなど)でadb shellコマンドを使用して、画面のオフまたはオンの状態を確認する他の方法はありますか