La fenetre ne se ferme plus si on affiche rien

This commit is contained in:
Hugo 2015-06-13 13:35:27 +02:00
parent 07c4b3290a
commit c56ea7e6c3

View File

@ -34,15 +34,16 @@ public class ShopSearch extends OptionsActivity {
loading = (RelativeLayout) findViewById(R.id.loading);
Button searchButton = (Button) findViewById(R.id.searchAction);
// @todo form validation (empty ...)
searchButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (name.getText().toString().trim().length() > 0 && location.getText().toString().trim().length() > 0) {
loading.setVisibility(View.VISIBLE);
SearchTask s = new SearchTask();
s.execute(Utils.generateUrlForTextLocation(name.getText().toString(), location.getText().toString()));
}
}
});
findViewById(R.id.gpsAction).setOnClickListener(new View.OnClickListener() {