完善搜索UI

This commit is contained in:
zhangyuanzhen
2020-01-02 18:08:53 +08:00
parent 9fcfd0ad3f
commit 887898a920
22 changed files with 1377 additions and 149 deletions

View File

@@ -0,0 +1,28 @@
package com.mogo.module.common;
import android.text.Editable;
import android.text.TextWatcher;
/**
* @author congtaowang
* @since 2019-10-02
* <p>
* 描述
*/
public class TextWatcherAdapter implements 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 ) {
}
@Override
public void afterTextChanged( Editable s ) {
}
}