我正在开发一款聊天应用。当用户输入或用户完全删除时,我可以获取更新输入状态的事件,我可以更新为"不输入状态"并显示为在线。直到这个过程正常。
但问题是当用户键入一些行并停止时,我不应该显示在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");
}
}
我的问题是当用户在键盘上键入一段时间然后停止时如何处理。
感谢。
答案 0 :(得分:5)
基本上你需要实现某种超时。每次用户输入内容时,您都必须安排超时并重置之前安排的任何超时。因此,当用户停止输入时,计时器将在指定时间后触发。
您可以使用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();
}
}
});
答案 1 :(得分:0)
使用处理程序:
_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");
}
}
答案 2 :(得分:0)
我认为您需要使用:
item