Fix exceptions
This commit is contained in:
parent
5546e87b1f
commit
f89cd246f0
4 changed files with 52 additions and 51 deletions
|
@ -43,12 +43,13 @@ public enum AmenityType {
|
|||
this.defaultTag = defaultTag;
|
||||
}
|
||||
|
||||
public static AmenityType fromString(String s){
|
||||
try {
|
||||
return AmenityType.valueOf(s.toUpperCase());
|
||||
} catch (IllegalArgumentException e) {
|
||||
return AmenityType.OTHER;
|
||||
public static AmenityType fromString(String s) {
|
||||
for (AmenityType t : values()) {
|
||||
if (t.name().equalsIgnoreCase(s)) {
|
||||
return t;
|
||||
}
|
||||
}
|
||||
return OTHER;
|
||||
}
|
||||
|
||||
public String getDefaultTag() {
|
||||
|
|
|
@ -248,7 +248,7 @@ public class MapRenderingTypes {
|
|||
rtype.value = null;
|
||||
}
|
||||
if (poiParentCategory != null) {
|
||||
rtype.poiCategory = AmenityType.valueOf(poiParentCategory.toUpperCase());
|
||||
rtype.poiCategory = AmenityType.fromString(poiParentCategory);
|
||||
rtype.poiSpecified = true;
|
||||
}
|
||||
if (poiParentPrefix != null) {
|
||||
|
@ -305,7 +305,7 @@ public class MapRenderingTypes {
|
|||
String tag = parser.getAttributeValue("","poi_tag");
|
||||
if (tag != null) {
|
||||
AmenityRuleType rtype = new AmenityRuleType();
|
||||
rtype.poiCategory = AmenityType.valueOf(poiParentCategory.toUpperCase());
|
||||
rtype.poiCategory = AmenityType.fromString(poiParentCategory);
|
||||
rtype.poiSpecified = true;
|
||||
rtype.relation = Boolean.parseBoolean(parser.getAttributeValue("", "relation"));
|
||||
rtype.poiPrefix = poiParentPrefix;
|
||||
|
|
|
@ -425,7 +425,7 @@ public class SearchPOIActivity extends OsmandListActivity implements OsmAndCompa
|
|||
if (location == null) {
|
||||
title = R.string.search_poi_location;
|
||||
enabled = false;
|
||||
} else if (!isNameFinderFilter() && !isSearchByNameFilter()) {
|
||||
} else if (filter != null && !isNameFinderFilter() && !isSearchByNameFilter()) {
|
||||
title = R.string.search_POI_level_btn;
|
||||
enabled = (taskAlreadyFinished || currentSearchTask.getStatus() != Status.RUNNING) && filter.isSearchFurtherAvailable();
|
||||
} else if (filter != null) {
|
||||
|
|
|
@ -47,52 +47,52 @@ public class SettingsAudioVideoActivity extends SettingsBaseActivity {
|
|||
ListPreference defAct = createListPreference(p.AV_DEFAULT_ACTION, entries, intValues, R.string.av_widget_action,
|
||||
R.string.av_widget_action_descr);
|
||||
grp.addPreference(defAct);
|
||||
|
||||
// camera type settings:
|
||||
grp.addPreference(createCheckBoxPreference(p.AV_EXTERNAL_PHOTO_CAM, R.string.av_use_external_camera,
|
||||
R.string.av_use_external_camera_descr));
|
||||
// focus mode settings:
|
||||
// show in menu only suppoted modes:
|
||||
final Camera cam = openCamera();
|
||||
Parameters parameters = cam.getParameters();
|
||||
List<String> sfm = parameters.getSupportedFocusModes();
|
||||
List<String> items = new ArrayList<String>();
|
||||
List<Integer> itemsValues = new ArrayList<Integer>();
|
||||
// filtering known types for translate and set index:
|
||||
for (int index = 0; index < sfm.size(); index++) {
|
||||
if (sfm.get(index).equals("auto")) {
|
||||
items.add(getString(R.string.av_camera_focus_auto));
|
||||
itemsValues.add(AV_CAMERA_FOCUS_AUTO);
|
||||
} else if (sfm.get(index).equals("fixed")) {
|
||||
items.add(getString(R.string.av_camera_focus_hiperfocal));
|
||||
itemsValues.add(AV_CAMERA_FOCUS_HIPERFOCAL);
|
||||
} else if (sfm.get(index).equals("edof")) {
|
||||
items.add(getString(R.string.av_camera_focus_edof));
|
||||
itemsValues.add(AV_CAMERA_FOCUS_EDOF);
|
||||
} else if (sfm.get(index).equals("infinity")) {
|
||||
items.add(getString(R.string.av_camera_focus_infinity));
|
||||
itemsValues.add(AV_CAMERA_FOCUS_INFINITY);
|
||||
} else if (sfm.get(index).equals("macro")) {
|
||||
items.add(getString(R.string.av_camera_focus_macro));
|
||||
itemsValues.add(AV_CAMERA_FOCUS_MACRO);
|
||||
} else if (sfm.get(index).equals("continuous-picture")) {
|
||||
items.add(getString(R.string.av_camera_focus_continuous));
|
||||
itemsValues.add(AV_CAMERA_FOCUS_CONTINUOUS);
|
||||
if (cam != null) {
|
||||
// camera type settings:
|
||||
grp.addPreference(createCheckBoxPreference(p.AV_EXTERNAL_PHOTO_CAM, R.string.av_use_external_camera,
|
||||
R.string.av_use_external_camera_descr));
|
||||
// focus mode settings:
|
||||
// show in menu only suppoted modes:
|
||||
|
||||
Parameters parameters = cam.getParameters();
|
||||
List<String> sfm = parameters.getSupportedFocusModes();
|
||||
List<String> items = new ArrayList<String>();
|
||||
List<Integer> itemsValues = new ArrayList<Integer>();
|
||||
// filtering known types for translate and set index:
|
||||
for (int index = 0; index < sfm.size(); index++) {
|
||||
if (sfm.get(index).equals("auto")) {
|
||||
items.add(getString(R.string.av_camera_focus_auto));
|
||||
itemsValues.add(AV_CAMERA_FOCUS_AUTO);
|
||||
} else if (sfm.get(index).equals("fixed")) {
|
||||
items.add(getString(R.string.av_camera_focus_hiperfocal));
|
||||
itemsValues.add(AV_CAMERA_FOCUS_HIPERFOCAL);
|
||||
} else if (sfm.get(index).equals("edof")) {
|
||||
items.add(getString(R.string.av_camera_focus_edof));
|
||||
itemsValues.add(AV_CAMERA_FOCUS_EDOF);
|
||||
} else if (sfm.get(index).equals("infinity")) {
|
||||
items.add(getString(R.string.av_camera_focus_infinity));
|
||||
itemsValues.add(AV_CAMERA_FOCUS_INFINITY);
|
||||
} else if (sfm.get(index).equals("macro")) {
|
||||
items.add(getString(R.string.av_camera_focus_macro));
|
||||
itemsValues.add(AV_CAMERA_FOCUS_MACRO);
|
||||
} else if (sfm.get(index).equals("continuous-picture")) {
|
||||
items.add(getString(R.string.av_camera_focus_continuous));
|
||||
itemsValues.add(AV_CAMERA_FOCUS_CONTINUOUS);
|
||||
}
|
||||
}
|
||||
entries = items.toArray(entries);
|
||||
intValues = itemsValues.toArray(intValues);
|
||||
if (entries.length > 0) {
|
||||
ListPreference camFocus = createListPreference(p.AV_CAMERA_FOCUS_TYPE, entries, intValues, R.string.av_camera_focus,
|
||||
R.string.av_camera_focus_descr);
|
||||
grp.addPreference(camFocus);
|
||||
}
|
||||
// play sound on success photo:
|
||||
grp.addPreference(createCheckBoxPreference(p.AV_PHOTO_PLAY_SOUND, R.string.av_photo_play_sound,
|
||||
R.string.av_photo_play_sound_descr));
|
||||
cam.release();
|
||||
}
|
||||
entries = items.toArray(entries);
|
||||
intValues = itemsValues.toArray(intValues);
|
||||
if (entries.length > 0) {
|
||||
ListPreference camFocus = createListPreference(p.AV_CAMERA_FOCUS_TYPE, entries, intValues, R.string.av_camera_focus,
|
||||
R.string.av_camera_focus_descr);
|
||||
grp.addPreference(camFocus);
|
||||
}
|
||||
// play sound on success photo:
|
||||
grp.addPreference(createCheckBoxPreference(p.AV_PHOTO_PLAY_SOUND, R.string.av_photo_play_sound,
|
||||
R.string.av_photo_play_sound_descr));
|
||||
cam.release();
|
||||
|
||||
|
||||
// video settings:
|
||||
grp.addPreference(createCheckBoxPreference(p.AV_EXTERNAL_RECORDER, R.string.av_use_external_recorder,
|
||||
R.string.av_use_external_recorder_descr));
|
||||
|
|
Loading…
Reference in a new issue