使用Android Studio,在代码中插入好断点后,点击Debug按钮,发现不能像先前那样进入Debugger界面,发现下方Debug界面中的console界面中如图显示。
Connected to the target VH,address: ‘localhost:59024’,transport: ‘socket’
Disconnected from the target VH,address: ‘localhost:59024’,transport: ‘socket’
在观察后发现,在“Connected”之后很快就“Disconnected”。
而后在Logcat中发现,我在一个Activity的onCreate()方法中加入了一些逻辑判断而没有执行super.onCreate()方法。
后加入调用后,发现Debugger正常。
虽然这个Exception并不影响我自己的程序的正常运行,但却会导致Debugger无法正常使用,会导致debug的disconnected。
或许对大家有所帮助。