Commit 1ce1ee6f by 霍志良

feat:正在输入1500ms恢复之前名字

parent a0234dc4
...@@ -10,7 +10,7 @@ ext { ...@@ -10,7 +10,7 @@ ext {
"m-fm" : "0.0.30.03", "m-fm" : "0.0.30.03",
"m-user" : "0.0.61.39", "m-user" : "0.0.61.39",
"m-home" : "0.0.22.69", "m-home" : "0.0.22.69",
"m-im" : "0.0.19.71", "m-im" : "0.0.19.73",
"m-dynamic" : "0.0.7.28", "m-dynamic" : "0.0.7.28",
"m-article" : "0.0.0.10", "m-article" : "0.0.0.10",
...@@ -93,7 +93,7 @@ ext { ...@@ -93,7 +93,7 @@ ext {
"m-fm" : "0.0.30.01", "m-fm" : "0.0.30.01",
"m-user" : "0.0.61.39", "m-user" : "0.0.61.39",
"m-home" : "0.0.22.69", "m-home" : "0.0.22.69",
"m-im" : "0.0.19.71", "m-im" : "0.0.19.73",
"m-dynamic" : "0.0.7.28", "m-dynamic" : "0.0.7.28",
"m-article" : "0.0.0.8", "m-article" : "0.0.0.8",
......
...@@ -228,6 +228,12 @@ public class YDLP2PMessageActivity extends YDLBaseMessageActivity { ...@@ -228,6 +228,12 @@ public class YDLP2PMessageActivity extends YDLBaseMessageActivity {
//对方输入中 //对方输入中
oldName= tb.getTitle(); oldName= tb.getTitle();
tb.setTitle("对方正在输入..."); tb.setTitle("对方正在输入...");
tb.postDelayed(new Runnable() {
@Override
public void run() {
tb.setTitle(oldName);
}
},1500);
} else if (id==2){ } else if (id==2){
//对方结束输入 //对方结束输入
tb.setTitle(oldName); tb.setTitle(oldName);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment