diff --git a/app/src/main/java/fr/free/nrw/commons/nearby/NearbyActivity.java b/app/src/main/java/fr/free/nrw/commons/nearby/NearbyActivity.java
index adb77186f..1d19c9453 100644
--- a/app/src/main/java/fr/free/nrw/commons/nearby/NearbyActivity.java
+++ b/app/src/main/java/fr/free/nrw/commons/nearby/NearbyActivity.java
@@ -56,8 +56,6 @@ public class NearbyActivity extends NavigationBaseActivity implements LocationUp
LinearLayout bottomSheet;
@BindView(R.id.bottom_sheet_details)
LinearLayout bottomSheetDetails;
- @BindView(R.id.fab_list)
- FloatingActionButton fabList;
@BindView(R.id.transparentView)
View transparentView;
@@ -85,8 +83,6 @@ public class NearbyActivity extends NavigationBaseActivity implements LocationUp
bundle = new Bundle();
initBottomSheetBehaviour();
- initFabList();
-
initDrawer();
}
@@ -129,16 +125,6 @@ public class NearbyActivity extends NavigationBaseActivity implements LocationUp
bottomSheetBehaviorForDetails.setState(BottomSheetBehavior.STATE_HIDDEN);
}
- private void initFabList() {
- fabList.setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View view) {
- bottomSheetBehaviorForDetails.setState(BottomSheetBehavior.STATE_HIDDEN);
- bottomSheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
- }
- });
- }
-
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
@@ -155,6 +141,10 @@ public class NearbyActivity extends NavigationBaseActivity implements LocationUp
lockNearbyView(false);
refreshView(true);
return true;
+ case R.id.action_display_list:
+ bottomSheetBehaviorForDetails.setState(BottomSheetBehavior.STATE_HIDDEN);
+ bottomSheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
+ return true;
default:
return super.onOptionsItemSelected(item);
}
@@ -412,11 +402,6 @@ public class NearbyActivity extends NavigationBaseActivity implements LocationUp
}
public void prepareViewsForSheetPosition(int bottomSheetState) {
- if (bottomSheetState >= BottomSheetBehavior.STATE_COLLAPSED) {
- fabList.show();
- }
- else if (bottomSheetState == BottomSheetBehavior.STATE_EXPANDED) {
- fabList.hide();
- }
+ // TODO
}
}
diff --git a/app/src/main/java/fr/free/nrw/commons/nearby/NearbyMapFragment.java b/app/src/main/java/fr/free/nrw/commons/nearby/NearbyMapFragment.java
index dab0cceb3..e207c3f6c 100644
--- a/app/src/main/java/fr/free/nrw/commons/nearby/NearbyMapFragment.java
+++ b/app/src/main/java/fr/free/nrw/commons/nearby/NearbyMapFragment.java
@@ -56,7 +56,6 @@ public class NearbyMapFragment extends android.support.v4.app.Fragment {
private LinearLayout wikipediaButton;
private LinearLayout wikidataButton;
private LinearLayout directionsButton;
- private FloatingActionButton fabList;
private FloatingActionButton fabPlus;
private FloatingActionButton fabCamera;
private FloatingActionButton fabGallery;
@@ -148,7 +147,6 @@ public class NearbyMapFragment extends android.support.v4.app.Fragment {
bottomSheetDetailsBehavior = BottomSheetBehavior.from(bottomSheetDetails);
bottomSheetDetailsBehavior.setState(BottomSheetBehavior.STATE_HIDDEN);
- fabList = getActivity().findViewById(R.id.fab_list);
fabPlus = getActivity().findViewById(R.id.fab_plus);
fabCamera = getActivity().findViewById(R.id.fab_camera);
fabGallery = getActivity().findViewById(R.id.fab_galery);
@@ -309,21 +307,18 @@ public class NearbyMapFragment extends android.support.v4.app.Fragment {
switch (bottomSheetState) {
case (BottomSheetBehavior.STATE_COLLAPSED):
- if (!fabList.isShown()) fabList.show();
closeFabs(isFabOpen);
if (!fabPlus.isShown()) showFAB();
this.getView().requestFocus();
moreInfo.setVisibility(View.VISIBLE);
break;
case (BottomSheetBehavior.STATE_EXPANDED):
- if (fabList.isShown()) fabList.hide();
this.getView().requestFocus();
moreInfo.setVisibility(View.VISIBLE);
break;
case (BottomSheetBehavior.STATE_HIDDEN):
transparentView.setClickable(false);
transparentView.setAlpha(0);
- if (!fabList.isShown()) fabList.show();
closeFabs(isFabOpen);
hideFAB();
this.getView().requestFocus();
diff --git a/app/src/main/res/layout/activity_nearby.xml b/app/src/main/res/layout/activity_nearby.xml
index 39e5ead5a..87f23473b 100644
--- a/app/src/main/res/layout/activity_nearby.xml
+++ b/app/src/main/res/layout/activity_nearby.xml
@@ -39,23 +39,6 @@
android:layout_height="match_parent">
-
+
+
- Search categories
Save
Refresh
+ List
GPS is disabled in your device. Would you like to enable it?
Enable GPS
No uploads yet