mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 21:03:54 +01:00
* UI design for legend to explain the colors of the nearby pins * Add listener for the button to toggle the visibility of the legend (make it hideable) * Change wording for legend and make text localizable * Fixed typo * Fixed typo --------- Co-authored-by: Nicolas Raoul <nicolas.raoul@gmail.com>
This commit is contained in:
parent
7b0b604834
commit
ba7348f83f
4 changed files with 119 additions and 0 deletions
|
|
@ -43,6 +43,7 @@ import android.view.ViewGroup;
|
|||
import android.view.ViewGroup.LayoutParams;
|
||||
import android.view.animation.Animation;
|
||||
import android.view.animation.AnimationUtils;
|
||||
import android.widget.Button;
|
||||
import android.widget.Toast;
|
||||
import androidx.activity.result.ActivityResultCallback;
|
||||
import androidx.activity.result.ActivityResultLauncher;
|
||||
|
|
@ -52,6 +53,7 @@ import androidx.annotation.DrawableRes;
|
|||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.appcompat.app.AlertDialog.Builder;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import androidx.core.content.ContextCompat;
|
||||
import androidx.core.content.FileProvider;
|
||||
import androidx.recyclerview.widget.DividerItemDecoration;
|
||||
|
|
@ -218,6 +220,8 @@ public class NearbyParentFragment extends CommonsDaggerSupportFragment
|
|||
private LatLng updatedLatLng;
|
||||
private boolean searchable;
|
||||
|
||||
private ConstraintLayout nearbyLegend;
|
||||
|
||||
private GridLayoutManager gridLayoutManager;
|
||||
private List<BottomSheetItem> dataList;
|
||||
private BottomSheetAdapter bottomSheetAdapter;
|
||||
|
|
@ -302,6 +306,7 @@ public class NearbyParentFragment extends CommonsDaggerSupportFragment
|
|||
progressDialog.setCancelable(false);
|
||||
progressDialog.setMessage("Saving in progress...");
|
||||
setHasOptionsMenu(true);
|
||||
|
||||
// Inflate the layout for this fragment
|
||||
return view;
|
||||
|
||||
|
|
@ -362,6 +367,16 @@ public class NearbyParentFragment extends CommonsDaggerSupportFragment
|
|||
}
|
||||
locationPermissionsHelper = new LocationPermissionsHelper(getActivity(), locationManager,
|
||||
this);
|
||||
|
||||
// Set up the floating activity button to toggle the visibility of the legend
|
||||
binding.fabLegend.setOnClickListener(v -> {
|
||||
if (binding.nearbyLegendLayout.getRoot().getVisibility() == View.VISIBLE) {
|
||||
binding.nearbyLegendLayout.getRoot().setVisibility(View.GONE);
|
||||
} else {
|
||||
binding.nearbyLegendLayout.getRoot().setVisibility(View.VISIBLE);
|
||||
}
|
||||
});
|
||||
|
||||
presenter.attachView(this);
|
||||
isPermissionDenied = false;
|
||||
recenterToUserLocation = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue