Merge pull request #10290 from osmandapp/issue_251_android_add_photo_backend_part2

OpenPlaceReviews add photo bug fix
This commit is contained in:
vshcherb 2020-11-27 15:52:00 +01:00 committed by GitHub
commit ca12d4014d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -109,6 +109,7 @@ public class MenuBuilder {
private String preferredMapAppLang;
private boolean transliterateNames;
private View view;
private View photoButton;
private final OpenDBAPI openDBAPI = new OpenDBAPI();
private String[] placeId = new String[0];
@ -121,6 +122,9 @@ public class MenuBuilder {
@Override
public void onPlaceIdAcquired(String[] placeId) {
MenuBuilder.this.placeId = placeId;
if (placeId.length < 2){
photoButton.setVisibility(View.GONE);
}
}
@Override
@ -404,6 +408,7 @@ public class MenuBuilder {
});
//TODO This feature is under development
view.setVisibility(View.GONE);
photoButton = view;
return view;
}