我正在开发一个应用程序。在xml布局中,我正在编辑文本并将其设置为drawable。
现在我想要的是 - 我想将提示设置为可绘制,并且还想设置文本,如图所示。
我尝试设置提示,但是当我设置提示时。没关系。但当我设置剩下的140个字符时,提示隐藏了。
我想在用户打算输入时保留140个字符。在每一个角色上,剩下的角色都会减少。
那么怎么做才能引导我......
答案 0 :(得分:6)
在TextWatcher
上使用EdiText
并使用TextView
显示剩余字符
private TextView mTextView;
private EditText mEditText;
private final TextWatcher mTextEditorWatcher = new TextWatcher() {
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
public void onTextChanged(CharSequence s, int start, int before, int count) {
//This sets a textview to the current length
mTextView.setText(String.valueOf(s.length()));
}
public void afterTextChanged(Editable s) {
}
};
mEditText.addTextChangedListener(mTextEditorWatcher);
答案 1 :(得分:0)
您必须在相对布局中使用您的EditText因此您可以设置一个textview,其值将在键入单个字母时更改所以您需要为此实现Textwatcher。