我已經在兩個編輯文本上實現了設置錯誤的代碼。錯誤信號不會消失,搜索正在工作
- 首先得到沒有空值或空值的任何字符串。
- 其次獲取任何沒有null或空值的字符串,並且必須有一些Double值。
代碼是實現所有的工作會好,但當我不進入後點擊搜索按鈕的錯誤後,在第一個編輯框彈出後,如下
import java.util.HashMap;
import java.util.Map;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
public class SearchPlaces extends Activity {
EditText place;
EditText distance;
Button search;
static String _place;
static String _distance;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
place = (EditText) findViewById(R.id.place);
distance = (EditText) findViewById(R.id.distance);
search = (Button) findViewById(R.id.search);
search.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Map<String, String> validate = new HashMap<String, String>();
_place = place.getText().toString();
_distance = distance.getText().toString();
validate.put("placename", _place);
validate.put("distancenumeric", _distance);
if (!validateInputInformation(validate)) {
return;
}
if ((_place == "" && _distance == "")) {
Toast.makeText(getApplicationContext(),
"Please fill all the information",
Toast.LENGTH_SHORT).show();
} else {
_place = place.getText().toString();
_distance = distance.getText().toString();
Intent placedist = new Intent(getApplicationContext(),
MainActivity.class);
Bundle bundle = new Bundle();
bundle.putString("place", _place);
bundle.putString("distance", _distance);
placedist.putExtras(bundle);
startActivity(placedist);
}
}
private boolean validateInputInformation(
Map<String, String> validate) {
String l_place = validate.get("placename");
if (l_place == null || l_place.equals("")) {
place.setError("Please enter the Place First");
return false;
}
String l_distance = validate.get("distancenumeric");
if (l_distance == null || l_distance.equals("")) {
distance.setError("Please enter the Distance First");
return false;
}
if (!isDoubleNumber(l_distance)) {
distance.setError("Please enter Numeric Value");
return false;
}
return true;
}
private boolean isDoubleNumber (String num) {
try {
Double.parseDouble(num);
} catch (NumberFormatException nfe) {
return false;
}
return true;
}
});
}
}
當我重新輸入正確的值作爲需要的輸入,然後錯誤通知不會消失,但搜索按鈕工作良好。
請幫助我,以便可以從第一個編輯框中刪除設置錯誤通知。
不,這解決了我的另一個問題,但仍然有待處理 –
@VarunVishnoi你的第二個問題是什麼? –
在第1次編輯文本中給出字符串後,錯誤紅色符號不會消失,但所有工作都很順利。但那個紅色的錯誤不會消失 –