Fixed
Status Update
Comments
uc...@google.com <uc...@google.com> #2
Hey thanks for reporting! We're just starting to dig into this.
Can you run
$ adb version
and also
$ which adb
Can you run
$ adb version
and also
$ which adb
ne...@gmail.com <ne...@gmail.com> #3
$ adb version
Android Debug Bridge version 1.0.31
$ which adb
/usr/bin/adb
BTW - "adb kill-server" also does the job, so it's really the server restart, not "adb logcat" that kicks off logging in AS again.
Android Debug Bridge version 1.0.31
$ which adb
/usr/bin/adb
BTW - "adb kill-server" also does the job, so it's really the server restart, not "adb logcat" that kicks off logging in AS again.
Description
AI-171.4101728, JRE 1.8.0_112-release-b736x64 JetBrains s.r.o, OS Mac OS X(x86_64) v10.12.5 unknown, screens 1920x1200
IMPORTANT: Please read
Structure:
1) a Super class child of AppCompactActivity which implements a public void clickedOnButton(View v) {...} method
2) a Subclass which doesn't implement the clickedOnButton method
3) a layout xml file which uses tools:context="package.subclass"
4) a button which uses android:onclick.
Method Autocomplete works in both Design and Text view modes and let select clickedOnButton method but both modes reports an error: "Corresponding method handler -method signature- not found".
Editor isn't able to detect public methods inherited (while autocomplete works)
Only temp fix is to override parent method to avoid error reporting on layout file.
Note: Project complies and run without problems.
Attached image:
Left code: layout xml file and errors showing which uses subclass for tools:context
Right code top area: superclass which implements onclick handler
Right code bottom area: subclass which doesn't implements onclick