摘要:
private ProgressDialog progressDialog; String tip = getBaseContext().getResources().getString( R.string.str_update_check); progressDialog = ProgressDialog.show(WelcomeActivity.this, "", tip, true);progressDialog.dismiss(); 阅读全文
摘要:
View Code String regEx="[`~!@#$%^&*()+=|{}':;',\\[\\].<>/?~!@#¥%……&*()——+|{}【】‘;:”“’。,、?]"; Pattern p = Pattern.compile(regEx); Matcher m = p.matcher(name); if( m.find()){ Toast.makeText(InputRegisterInfoActivity.this... 阅读全文