你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
[已注销]
赞同来自: fat1
荡水河
fat1 - imgeek运营总管
要回复问题请先登录或注册
3 个回复
[已注销]
赞同来自: fat1
final String name = editText.getText().toString();
String saveText = searchBtn.getText().toString();
if (getString(R.string.button_search).equals(saveText)) {
toAddUsername = name;
if(TextUtils.isEmpty(name)) {
String st = getResources().getString(R.string.Please_enter_a_username);
startActivity(new Intent(this, AlertDialog.class).putExtra("msg", st));
return;
}
// TODO 从服务器获取此contact,如果不存在提示不存在此用户
//服务器存在此用户,显示此用户和添加按钮
searchedUserLayout.setVisibility(View.VISIBLE);
nameText.setText(toAddUsername);
}
}
uidemo(2.2.0)中默认没有过滤 都会写上
荡水河
fat1 - imgeek运营总管