Android Show Layout Bounds via adb



Run this command to activate Layout Bounds via adb command

adb shell am force-stop com.company.appname ; adb shell setprop debug.layout true ; adb shell monkey -p com.company.appname -c android.intent.category.LAUNCHER 1
Result 

and run this command if you want to disable it.

adb shell am force-stop com.company.appname ; adb shell setprop debug.layout false ; adb shell monkey -p com.company.appname -c android.intent.category.LAUNCHER 1

Komentar