Obsolete
Status Update
Comments
dn...@google.com <dn...@google.com>
dn...@google.com <dn...@google.com> #2
This issue does not reproduce with dev preview 4.
ja...@gmail.com <ja...@gmail.com> #3
Closing this issue as per comment #2 from reporter.
dn...@google.com <dn...@google.com> #4
@jatinder.techwinlabs@gmail.com:
Based on your comment #3 , we understood that you are not able to reproduce this issue.
SO shall we close this issue?
Based on your
SO shall we close this issue?
dn...@google.com <dn...@google.com> #5
Closing this issue based on the comment #3 .
Description
So basically if i type ABC , i am getting g/na/na/nABC in method onTextChanged. Now i changed back my app compileSdkVersion and targetSdkVersion from 26 to 25 and everything is working fine.
This is how i am using it:
private TextWatcher watcher = new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
if (!s.toString().isEmpty())
presenter.searchCompany(getActivity(), s.toString());
}
@Override
public void afterTextChanged(Editable s) {
}
};