如果用户在输入 edittext android 后停止,如何处理?
How to handle if user stopped after typing in edittext android?
我正在开发一个聊天应用程序。当用户输入或用户完全删除时,我可以获得更新输入状态的事件,我可以更新为 "not typing status" 并显示为在线。直到这个过程正常工作。
但问题是当用户键入一些行并停止时,我不应该显示在 whatsapp 中应用的键入。如何处理?
这是我所做的代码。
ChatMsg.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start,
int before, int count) {
if (edtChatMsg.getText().toString().trim().length() > 0) {
if (!isTyping) {
isTyping = true;
serviceCall();
}
else{
isTyping = false;
serviceCall();
}
}
so at result
@Override
protected void onTyping(String message) {
if (message.equalsIgnoreCase("Typing…")) {
txtUserPersonStatus.setText("Typing…");
} else {
txtUserPersonStatus.setText("Online");
}
}
我的问题是当用户在键盘上输入一段时间然后停止时如何处理。
谢谢。
使用处理程序:
_AFKHandler = new Handler();
_AFKRunnable = new Runnable() {
public void run() {
isTyping = false;
serviceCall();
}
};
ChatMsg.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start,
int before, int count) {
_AFKHandler.removeCallbacks(_AFKRunnable);
if (edtChatMsg.getText().toString().trim().length() > 0) {
if (!isTyping) {
isTyping = true;
serviceCall();
_AFKHandler.postDelayed(_AFKRunnable,AFK_TIMEOUT_VALUE_IN_MS);
}
else{
isTyping = false;
serviceCall();
}
}
so at result
@Override
protected void onTyping(String message) {
if (message.equalsIgnoreCase("Typing…")) {
txtUserPersonStatus.setText("Typing…");
} else {
txtUserPersonStatus.setText("Online");
}
}
基本上你需要实现某种超时。每次用户键入内容时,您都必须安排超时并重置之前安排的任何超时。因此,当用户停止输入时,计时器会在指定时间后触发。
您可以使用 Handler
来做到这一点,例如:
final int TYPING_TIMEOUT = 5000; // 5 seconds timeout
final Handler timeoutHandler = new Handler();
final Runnable typingTimeout = new Runnable() {
public void run() {
isTyping = false;
serviceCall();
}
};
ChatMsg.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// reset the timeout
timeoutHandler.removeCallbacks(typingTimeout);
if (edtChatMsg.getText().toString().trim().length() > 0) {
// schedule the timeout
timeoutHandler.postDelayed(typingTimeout, TYPING_TIMEOUT);
if (!isTyping) {
isTyping = true;
serviceCall();
}
}
else {
isTyping = false;
serviceCall();
}
}
});
我认为你需要使用:
@Override
public void afterTextChanged(Editable arg0) {
// arg0=null ,Handler ---is empty ;
}
@Override
public void beforeTextChanged(CharSequence arg0, int arg1, int arg2,
int arg3) {
// Handler --- is typing
}
我正在开发一个聊天应用程序。当用户输入或用户完全删除时,我可以获得更新输入状态的事件,我可以更新为 "not typing status" 并显示为在线。直到这个过程正常工作。
但问题是当用户键入一些行并停止时,我不应该显示在 whatsapp 中应用的键入。如何处理?
这是我所做的代码。
ChatMsg.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start,
int before, int count) {
if (edtChatMsg.getText().toString().trim().length() > 0) {
if (!isTyping) {
isTyping = true;
serviceCall();
}
else{
isTyping = false;
serviceCall();
}
}
so at result
@Override
protected void onTyping(String message) {
if (message.equalsIgnoreCase("Typing…")) {
txtUserPersonStatus.setText("Typing…");
} else {
txtUserPersonStatus.setText("Online");
}
}
我的问题是当用户在键盘上输入一段时间然后停止时如何处理。
谢谢。
使用处理程序:
_AFKHandler = new Handler();
_AFKRunnable = new Runnable() {
public void run() {
isTyping = false;
serviceCall();
}
};
ChatMsg.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start,
int before, int count) {
_AFKHandler.removeCallbacks(_AFKRunnable);
if (edtChatMsg.getText().toString().trim().length() > 0) {
if (!isTyping) {
isTyping = true;
serviceCall();
_AFKHandler.postDelayed(_AFKRunnable,AFK_TIMEOUT_VALUE_IN_MS);
}
else{
isTyping = false;
serviceCall();
}
}
so at result
@Override
protected void onTyping(String message) {
if (message.equalsIgnoreCase("Typing…")) {
txtUserPersonStatus.setText("Typing…");
} else {
txtUserPersonStatus.setText("Online");
}
}
基本上你需要实现某种超时。每次用户键入内容时,您都必须安排超时并重置之前安排的任何超时。因此,当用户停止输入时,计时器会在指定时间后触发。
您可以使用 Handler
来做到这一点,例如:
final int TYPING_TIMEOUT = 5000; // 5 seconds timeout
final Handler timeoutHandler = new Handler();
final Runnable typingTimeout = new Runnable() {
public void run() {
isTyping = false;
serviceCall();
}
};
ChatMsg.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// reset the timeout
timeoutHandler.removeCallbacks(typingTimeout);
if (edtChatMsg.getText().toString().trim().length() > 0) {
// schedule the timeout
timeoutHandler.postDelayed(typingTimeout, TYPING_TIMEOUT);
if (!isTyping) {
isTyping = true;
serviceCall();
}
}
else {
isTyping = false;
serviceCall();
}
}
});
我认为你需要使用:
@Override
public void afterTextChanged(Editable arg0) {
// arg0=null ,Handler ---is empty ;
}
@Override
public void beforeTextChanged(CharSequence arg0, int arg1, int arg2,
int arg3) {
// Handler --- is typing
}