Skip to content

Commit

Permalink
修复内容是否为空的监听事件不起作用的问题。
Browse files Browse the repository at this point in the history
  • Loading branch information
lindroy committed Apr 29, 2019
1 parent 0320618 commit de172fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import android.text.method.HideReturnsTransformationMethod;
import android.text.method.PasswordTransformationMethod;
import android.util.AttributeSet;
import android.util.Log;
import android.view.MotionEvent;
import android.view.inputmethod.EditorInfo;
import android.widget.Toast;
Expand Down Expand Up @@ -394,7 +393,6 @@ public String getMaxCharsAlert() {
}

public void setMaxCharsAlert(@NonNull String alert) {
Log.e(TAG, "alert=" + alert);
maxCharsAlert = alert;
}

Expand Down Expand Up @@ -540,6 +538,7 @@ public interface OnEmptyChangeListener {
*/
public void setEmptyChangeListener(OnEmptyChangeListener listener) {
emptyListener = listener;
setTextWatcher();
}

/**
Expand Down

0 comments on commit de172fa

Please sign in to comment.