public void getFavoriteFromPoint( RotatedTileBox tb, PointF point, List<? super FavouritePoint> res) { int r = (int) (15 * tb.getDensity()); int ex = (int) point.x; int ey = (int) point.y; for (FavouritePoint n : favorites.getFavouritePoints()) { int x = (int) tb.getPixXFromLatLon(n.getLatitude(), n.getLongitude()); int y = (int) tb.getPixYFromLatLon(n.getLatitude(), n.getLongitude()); if (calculateBelongs(ex, ey, x, y, r)) { res.add(n); } } }
public void getRecordingsFromPoint( PointF point, RotatedTileBox tileBox, List<? super Recording> am) { int ex = (int) point.x; int ey = (int) point.y; int compare = getRadiusPoi(tileBox); int radius = compare * 3 / 2; for (Recording n : plugin.getAllRecordings()) { int x = (int) tileBox.getPixXFromLatLon(n.getLatitude(), n.getLongitude()); int y = (int) tileBox.getPixYFromLatLon(n.getLatitude(), n.getLongitude()); if (calculateBelongs(ex, ey, x, y, compare)) { compare = radius; am.add(n); } } }
@Override public void onPrepareBufferImage(Canvas canvas, RotatedTileBox tileBox, DrawSettings settings) { if (tileBox.getZoom() >= startZoom) { DataTileManager<Recording> recs = plugin.getRecordings(); final QuadRect latlon = tileBox.getLatLonBounds(); List<Recording> objects = recs.getObjects(latlon.top, latlon.left, latlon.bottom, latlon.right); for (Recording o : objects) { int x = (int) tileBox.getPixXFromLatLon(o.getLatitude(), o.getLongitude()); int y = (int) tileBox.getPixYFromLatLon(o.getLatitude(), o.getLongitude()); Bitmap b; if (o.isPhoto()) { b = photo; } else if (o.isAudio()) { b = audio; } else { b = video; } canvas.drawBitmap(b, x - b.getWidth() / 2, y - b.getHeight() / 2, paintIcon); } } }
private void adjustMapPosition(int y, boolean animated) { double markerLat = menu.getLatLon().getLatitude(); double markerLon = menu.getLatLon().getLongitude(); RotatedTileBox box = map.getCurrentRotatedTileBox().copy(); LatLon latlon = mapCenter; if (menu.isLandscapeLayout()) { int markerX = (int) box.getPixXFromLatLon(markerLat, markerLon); int x = dpToPx(menu.getLandscapeWidthDp()); if (markerX - markerPaddingXPx < x || markerX > origMarkerX) { int dx = (x + markerPaddingXPx) - markerX; if (markerX - dx <= origMarkerX) { QuadPoint cp = box.getCenterPixelPoint(); latlon = box.getLatLonFromPixel(cp.x - dx, cp.y); } else { latlon = box.getCenterLatLon(); } } } else { int markerY = (int) box.getPixYFromLatLon(markerLat, markerLon); if (markerY + markerPaddingPx > y || markerY < origMarkerY) { int dy = markerY - (y - markerPaddingPx); if (markerY - dy <= origMarkerY) { QuadPoint cp = box.getCenterPixelPoint(); latlon = box.getLatLonFromPixel(cp.x + 0, cp.y + dy); } } } if (map.getLatitude() == latlon.getLatitude() && map.getLongitude() == latlon.getLongitude()) { return; } if (animated) { showOnMap(latlon, false, true); } else { map.setLatLon(latlon.getLatitude(), latlon.getLongitude()); } }
@Override public void onPrepareBufferImage(Canvas canvas, RotatedTileBox tileBox, DrawSettings settings) { if (tileBox.getZoom() >= startZoom) { // request to load final QuadRect latLonBounds = tileBox.getLatLonBounds(); for (FavouritePoint o : favorites.getFavouritePoints()) { if (o.getLatitude() >= latLonBounds.bottom && o.getLatitude() <= latLonBounds.top && o.getLongitude() >= latLonBounds.left && o.getLongitude() <= latLonBounds.right) { int x = (int) tileBox.getPixXFromLatLon(o.getLatitude(), o.getLongitude()); int y = (int) tileBox.getPixYFromLatLon(o.getLatitude(), o.getLongitude()); FavoriteImageDrawable fid = FavoriteImageDrawable.getOrCreate(view.getContext(), o.getColor()); fid.drawBitmapInCenter(canvas, x, y); // canvas.drawBitmap(favoriteIcon, x - favoriteIcon.getWidth() / 2, // y - favoriteIcon.getHeight(), paint); } } } }
public void getBugFromPoint(RotatedTileBox tb, PointF point, List<? super OpenStreetNote> res) { List<OpenStreetNote> objects = data.getResults(); if (objects != null && view != null) { int ex = (int) point.x; int ey = (int) point.y; final int rad = getRadiusBug(tb); int radius = rad * 3 / 2; int small = rad * 3 / 4; try { for (int i = 0; i < objects.size(); i++) { OpenStreetNote n = objects.get(i); int x = (int) tb.getPixXFromLatLon(n.getLatitude(), n.getLongitude()); int y = (int) tb.getPixYFromLatLon(n.getLatitude(), n.getLongitude()); if (Math.abs(x - ex) <= radius && Math.abs(y - ey) <= radius) { radius = small; res.add(n); } } } catch (IndexOutOfBoundsException e) { // that's really rare case, but is much efficient than introduce synchronized block } } }
@TargetApi(Build.VERSION_CODES.HONEYCOMB) @Override public View onCreateView( LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { screenHeight = AndroidUtils.getScreenHeight(getActivity()); skipHalfScreenStateLimit = screenHeight * SKIP_HALF_SCREEN_STATE_KOEF; viewHeight = screenHeight - AndroidUtils.getStatusBarHeight(getMainActivity()); fabPaddingTopPx = dpToPx(FAB_PADDING_TOP_DP); markerPaddingPx = dpToPx(MARKER_PADDING_DP); markerPaddingXPx = dpToPx(MARKER_PADDING_X_DP); menu = getMainActivity().getContextMenu(); view = inflater.inflate(R.layout.map_context_menu_fragment, container, false); if (!menu.isActive()) { return view; } nightMode = menu.isNightMode(); mainView = view.findViewById(R.id.context_menu_main); leftTitleButtonController = menu.getLeftTitleButtonController(); rightTitleButtonController = menu.getRightTitleButtonController(); topRightTitleButtonController = menu.getTopRightTitleButtonController(); RotatedTileBox box = getBox(); customMapCenter = menu.getMapCenter() != null; if (!customMapCenter) { mapCenter = box.getCenterLatLon(); menu.setMapCenter(mapCenter); double markerLat = menu.getLatLon().getLatitude(); double markerLon = menu.getLatLon().getLongitude(); origMarkerX = (int) box.getPixXFromLatLon(markerLat, markerLon); origMarkerY = (int) box.getPixYFromLatLon(markerLat, markerLon); } else { mapCenter = menu.getMapCenter(); origMarkerX = box.getCenterPixelX(); origMarkerY = box.getCenterPixelY(); } // Left title button final Button leftTitleButton = (Button) view.findViewById(R.id.title_button); if (leftTitleButtonController != null) { leftTitleButton.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { leftTitleButtonController.buttonPressed(); } }); } // Right title button final Button rightTitleButton = (Button) view.findViewById(R.id.title_button_right); if (rightTitleButtonController != null) { rightTitleButton.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { rightTitleButtonController.buttonPressed(); } }); } // Top Right title button final Button topRightTitleButton = (Button) view.findViewById(R.id.title_button_top_right); if (topRightTitleButtonController != null) { topRightTitleButton.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { topRightTitleButtonController.buttonPressed(); } }); } updateButtonsAndProgress(); if (menu.isLandscapeLayout()) { final TypedValue typedValueAttr = new TypedValue(); getMainActivity().getTheme().resolveAttribute(R.attr.left_menu_view_bg, typedValueAttr, true); mainView.setBackgroundResource(typedValueAttr.resourceId); mainView.setLayoutParams( new FrameLayout.LayoutParams( menu.getLandscapeWidthPx(), ViewGroup.LayoutParams.MATCH_PARENT)); View fabContainer = view.findViewById(R.id.context_menu_fab_container); fabContainer.setLayoutParams( new FrameLayout.LayoutParams( menu.getLandscapeWidthPx(), ViewGroup.LayoutParams.MATCH_PARENT)); } runLayoutListener(); final GestureDetector singleTapDetector = new GestureDetector(view.getContext(), new SingleTapConfirm()); final View.OnTouchListener slideTouchListener = new View.OnTouchListener() { private float dy; private float dyMain; private VelocityTracker velocity; private boolean slidingUp; private boolean slidingDown; private float velocityY; private float maxVelocityY; private boolean hasMoved; @Override public boolean onTouch(View v, MotionEvent event) { if (singleTapDetector.onTouchEvent(event)) { moving = false; int posY = getViewY(); if (!centered) { if (!zoomIn && menu.supportZoomIn()) { LatLon centerLatLon = getMainActivity().getScreenCenter(); if (centerLatLon.equals(menu.getLatLon())) { zoomIn = true; } } centerMarkerLocation(); } else if (!zoomIn && menu.supportZoomIn()) { int fZoom = getZoom(); zoomIn = true; if (fZoom < ZOOM_IN_STANDARD) { /* todo animation AnimateDraggingMapThread thread = map.getAnimatedDraggingThread(); thread.startZooming(ZOOM_IN_STANDARD, map.getZoomFractionalPart(), true); */ getMainActivity().setZoom(ZOOM_IN_STANDARD); } } if (hasMoved) { applyPosY(posY, false, false, 0, 0); } openMenuHalfScreen(); return true; } if (menu.isLandscapeLayout()) { return true; } switch (event.getAction()) { case MotionEvent.ACTION_DOWN: hasMoved = false; dy = event.getY(); dyMain = getViewY(); velocity = VelocityTracker.obtain(); velocityY = 0; maxVelocityY = 0; velocity.addMovement(event); moving = true; break; case MotionEvent.ACTION_MOVE: if (moving) { hasMoved = true; float y = event.getY(); float newY = getViewY() + (y - dy); setViewY((int) newY, false, false); menuFullHeight = view.getHeight() - (int) newY + 10; if (!oldAndroid()) { ViewGroup.LayoutParams lp = mainView.getLayoutParams(); lp.height = Math.max(menuFullHeight, menuTitleHeight); mainView.setLayoutParams(lp); mainView.requestLayout(); } velocity.addMovement(event); velocity.computeCurrentVelocity(1000); velocityY = Math.abs(velocity.getYVelocity()); if (velocityY > maxVelocityY) maxVelocityY = velocityY; } break; case MotionEvent.ACTION_UP: case MotionEvent.ACTION_CANCEL: if (moving) { moving = false; int currentY = getViewY(); slidingUp = Math.abs(maxVelocityY) > 500 && (currentY - dyMain) < -50; slidingDown = Math.abs(maxVelocityY) > 500 && (currentY - dyMain) > 50; velocity.recycle(); boolean skipHalfScreenState = Math.abs(currentY - dyMain) > skipHalfScreenStateLimit; changeMenuState(currentY, skipHalfScreenState, slidingUp, slidingDown); } break; } return true; } }; View topView = view.findViewById(R.id.context_menu_top_view); topView.setOnTouchListener(slideTouchListener); View topShadowView = view.findViewById(R.id.context_menu_top_shadow); topShadowView.setOnTouchListener(slideTouchListener); View topShadowAllView = view.findViewById(R.id.context_menu_top_shadow_all); // AndroidUtils.setBackground(getMainActivity(), topShadowAllView, nightMode, // R.drawable.bg_map_context_menu_light, // R.drawable.bg_map_context_menu_dark); topShadowAllView.setOnTouchListener( new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { if (event.getY() <= dpToPx(SHADOW_HEIGHT_TOP_DP) || event.getAction() != MotionEvent.ACTION_DOWN) return slideTouchListener.onTouch(v, event); else return false; } }); buildHeader(); AndroidUtils.setTextPrimaryColor( getMainActivity(), (TextView) view.findViewById(R.id.context_menu_line1), nightMode); View menuLine2 = view.findViewById(R.id.context_menu_line2); if (menuLine2 != null) { AndroidUtils.setTextSecondaryColor(getMainActivity(), (TextView) menuLine2, nightMode); } ((Button) view.findViewById(R.id.title_button_top_right)) .setTextColor( !nightMode ? getResources().getColor(R.color.map_widget_blue) : getResources().getColor(R.color.osmand_orange)); AndroidUtils.setTextSecondaryColor( getMainActivity(), (TextView) view.findViewById(R.id.distance), nightMode); ((Button) view.findViewById(R.id.title_button)) .setTextColor( !nightMode ? getResources().getColor(R.color.map_widget_blue) : getResources().getColor(R.color.osmand_orange)); AndroidUtils.setTextSecondaryColor( getMainActivity(), (TextView) view.findViewById(R.id.title_button_right_text), nightMode); ((Button) view.findViewById(R.id.title_button_right)) .setTextColor( !nightMode ? getResources().getColor(R.color.map_widget_blue) : getResources().getColor(R.color.osmand_orange)); // FAB /* fabView = (ImageView) view.findViewById(R.id.context_menu_fab_view); if (menu.fabVisible()) { fabView.setImageDrawable(iconsCache.getIcon(menu.getFabIconId(), 0)); if (menu.isLandscapeLayout()) { FrameLayout.LayoutParams params = (FrameLayout.LayoutParams) fabView.getLayoutParams(); params.setMargins(0, 0, dpToPx(28f), 0); fabView.setLayoutParams(params); } fabView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { menu.fabPressed(); } }); } else { fabView.setVisibility(View.GONE); } */ buildBottomView(); view.findViewById(R.id.context_menu_bottom_scroll) .setBackgroundColor( nightMode ? getResources().getColor(R.color.ctx_menu_info_view_bg_dark) : getResources().getColor(R.color.ctx_menu_info_view_bg_light)); view.findViewById(R.id.context_menu_bottom_view) .setBackgroundColor( nightMode ? getResources().getColor(R.color.ctx_menu_info_view_bg_dark) : getResources().getColor(R.color.ctx_menu_info_view_bg_light)); return view; }
private LatLon getAdjustedMarkerLocation( int y, LatLon reqMarkerLocation, boolean center, int zoom) { double markerLat = reqMarkerLocation.getLatitude(); double markerLon = reqMarkerLocation.getLongitude(); RotatedTileBox box = getBox(); // box.setCenterLocation(0.5f, map.getMapPosition() == OsmandSettings.BOTTOM_CONSTANT ? 0.15f : // 0.5f); box.setZoom(zoom); int markerMapCenterX = (int) box.getPixXFromLatLon(mapCenter.getLatitude(), mapCenter.getLongitude()); int markerMapCenterY = (int) box.getPixYFromLatLon(mapCenter.getLatitude(), mapCenter.getLongitude()); float cpyOrig = box.getCenterPixelPoint().y; box.setCenterLocation(0.5f, 0.5f); int markerX = (int) box.getPixXFromLatLon(markerLat, markerLon); int markerY = (int) box.getPixYFromLatLon(markerLat, markerLon); QuadPoint cp = box.getCenterPixelPoint(); float cpx = cp.x; float cpy = cp.y; float cpyDelta = menu.isLandscapeLayout() ? 0 : cpyOrig - cpy; markerY += cpyDelta; y += cpyDelta; float origMarkerY = this.origMarkerY + cpyDelta; LatLon latlon; if (center) { latlon = reqMarkerLocation; } else { latlon = box.getLatLonFromPixel(markerMapCenterX, markerMapCenterY); } if (menu.isLandscapeLayout()) { int x = menu.getLandscapeWidthPx(); if (markerX - markerPaddingXPx < x || markerX > origMarkerX) { int dx = (x + markerPaddingXPx) - markerX; int dy = 0; if (center) { dy = (int) cpy - markerY; } else { cpy = cpyOrig; } if (dx >= 0 || center) { latlon = box.getLatLonFromPixel(cpx - dx, cpy - dy); } } } else { if (markerY + markerPaddingPx > y || markerY < origMarkerY) { int dx = 0; int dy = markerY - (y - markerPaddingPx); if (markerY - dy <= origMarkerY) { if (center) { dx = markerX - (int) cpx; } latlon = box.getLatLonFromPixel(cpx + dx, cpy + dy); } } } return latlon; }
@TargetApi(Build.VERSION_CODES.HONEYCOMB) @Override public View onCreateView( LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { screenHeight = getScreenHeight(); skipHalfScreenStateLimit = screenHeight * SKIP_HALF_SCREEN_STATE_KOEF; viewHeight = screenHeight - getStatusBarHeight(); fabPaddingTopPx = dpToPx(FAB_PADDING_TOP_DP); markerPaddingPx = dpToPx(MARKER_PADDING_DP); markerPaddingXPx = dpToPx(MARKER_PADDING_X_DP); menu = getMapActivity().getContextMenu(); leftTitleButtonController = menu.getLeftTitleButtonController(); rightTitleButtonController = menu.getRightTitleButtonController(); topRightTitleButtonController = menu.getTopRightTitleButtonController(); titleProgressController = menu.getTitleProgressController(); map = getMapActivity().getMapView(); RotatedTileBox box = map.getCurrentRotatedTileBox().copy(); customMapCenter = menu.getMapCenter() != null; if (!customMapCenter) { mapCenter = box.getCenterLatLon(); menu.setMapCenter(mapCenter); double markerLat = menu.getLatLon().getLatitude(); double markerLon = menu.getLatLon().getLongitude(); origMarkerX = (int) box.getPixXFromLatLon(markerLat, markerLon); origMarkerY = (int) box.getPixYFromLatLon(markerLat, markerLon); } else { mapCenter = menu.getMapCenter(); origMarkerX = box.getCenterPixelX(); origMarkerY = box.getCenterPixelY(); } IconsCache iconsCache = getMyApplication().getIconsCache(); boolean light = getMyApplication().getSettings().isLightContent(); view = inflater.inflate(R.layout.map_context_menu_fragment, container, false); mainView = view.findViewById(R.id.context_menu_main); // Left title button final Button leftTitleButton = (Button) view.findViewById(R.id.title_button); if (leftTitleButtonController != null) { leftTitleButton.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { leftTitleButtonController.buttonPressed(); } }); } // Right title button final Button rightTitleButton = (Button) view.findViewById(R.id.title_button_right); if (rightTitleButtonController != null) { rightTitleButton.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { rightTitleButtonController.buttonPressed(); } }); } // Top Right title button final Button topRightTitleButton = (Button) view.findViewById(R.id.title_button_top_right); if (topRightTitleButtonController != null) { topRightTitleButton.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { topRightTitleButtonController.buttonPressed(); } }); } // Progress bar if (titleProgressController != null) { final ImageView progressButton = (ImageView) view.findViewById(R.id.progressButton); progressButton.setImageDrawable( iconsCache.getIcon( R.drawable.ic_action_remove_dark, light ? R.color.icon_color : R.color.dashboard_subheader_text_dark)); progressButton.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { titleProgressController.buttonPressed(); } }); } menu.updateData(); updateButtonsAndProgress(); if (menu.isLandscapeLayout()) { mainView.setLayoutParams( new FrameLayout.LayoutParams( dpToPx(menu.getLandscapeWidthDp()), ViewGroup.LayoutParams.MATCH_PARENT)); View fabContainer = view.findViewById(R.id.context_menu_fab_container); fabContainer.setLayoutParams( new FrameLayout.LayoutParams( dpToPx(menu.getLandscapeWidthDp()), ViewGroup.LayoutParams.MATCH_PARENT)); } runLayoutListener(); final GestureDetector singleTapDetector = new GestureDetector(view.getContext(), new SingleTapConfirm()); final View.OnTouchListener slideTouchListener = new View.OnTouchListener() { private float dy; private float dyMain; private VelocityTracker velocity; private boolean slidingUp; private boolean slidingDown; private float velocityY; private float maxVelocityY; private boolean hasMoved; @Override public boolean onTouch(View v, MotionEvent event) { if (singleTapDetector.onTouchEvent(event)) { showOnMap(menu.getLatLon(), true, false); if (hasMoved) { applyPosY(getViewY(), false, false, 0, 0); } return true; } if (menu.isLandscapeLayout()) { return true; } switch (event.getAction()) { case MotionEvent.ACTION_DOWN: hasMoved = false; dy = event.getY(); dyMain = getViewY(); velocity = VelocityTracker.obtain(); velocityY = 0; maxVelocityY = 0; velocity.addMovement(event); break; case MotionEvent.ACTION_MOVE: hasMoved = true; float y = event.getY(); float newY = getViewY() + (y - dy); setViewY((int) newY, false, false); menuFullHeight = view.getHeight() - (int) newY + 10; if (!oldAndroid()) { ViewGroup.LayoutParams lp = mainView.getLayoutParams(); lp.height = Math.max(menuFullHeight, menuTitleHeight); mainView.setLayoutParams(lp); mainView.requestLayout(); } velocity.addMovement(event); velocity.computeCurrentVelocity(1000); velocityY = Math.abs(velocity.getYVelocity()); if (velocityY > maxVelocityY) maxVelocityY = velocityY; break; case MotionEvent.ACTION_UP: case MotionEvent.ACTION_CANCEL: int currentY = getViewY(); slidingUp = Math.abs(maxVelocityY) > 500 && (currentY - dyMain) < -50; slidingDown = Math.abs(maxVelocityY) > 500 && (currentY - dyMain) > 50; velocity.recycle(); boolean skipHalfScreenState = Math.abs(currentY - dyMain) > skipHalfScreenStateLimit; changeMenuState(currentY, skipHalfScreenState, slidingUp, slidingDown); break; } return true; } }; View topView = view.findViewById(R.id.context_menu_top_view); topView.setOnTouchListener(slideTouchListener); View topShadowView = view.findViewById(R.id.context_menu_top_shadow); topShadowView.setOnTouchListener(slideTouchListener); View topShadowAllView = view.findViewById(R.id.context_menu_top_shadow_all); topShadowAllView.setOnTouchListener( new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { if (event.getY() <= dpToPx(SHADOW_HEIGHT_TOP_DP) || event.getAction() != MotionEvent.ACTION_DOWN) return slideTouchListener.onTouch(v, event); else return false; } }); buildHeader(); // FAB fabView = (ImageView) view.findViewById(R.id.context_menu_fab_view); if (menu.fabVisible()) { fabView.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { menu.fabPressed(); } }); } else { fabView.setVisibility(View.GONE); } if (!menu.buttonsVisible()) { View buttonsTopBorder = view.findViewById(R.id.buttons_top_border); View buttons = view.findViewById(R.id.context_menu_buttons); buttonsTopBorder.setVisibility(View.GONE); buttons.setVisibility(View.GONE); } // Action buttons final ImageButton buttonFavorite = (ImageButton) view.findViewById(R.id.context_menu_fav_button); buttonFavorite.setImageDrawable( iconsCache.getIcon( menu.getFavActionIconId(), light ? R.color.icon_color : R.color.dashboard_subheader_text_dark)); buttonFavorite.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { menu.buttonFavoritePressed(); } }); final ImageButton buttonWaypoint = (ImageButton) view.findViewById(R.id.context_menu_route_button); buttonWaypoint.setImageDrawable( iconsCache.getIcon( R.drawable.map_action_flag_dark, light ? R.color.icon_color : R.color.dashboard_subheader_text_dark)); buttonWaypoint.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { menu.buttonWaypointPressed(); } }); final ImageButton buttonShare = (ImageButton) view.findViewById(R.id.context_menu_share_button); buttonShare.setImageDrawable( iconsCache.getIcon( R.drawable.map_action_gshare_dark, light ? R.color.icon_color : R.color.dashboard_subheader_text_dark)); buttonShare.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { menu.buttonSharePressed(); } }); final ImageButton buttonMore = (ImageButton) view.findViewById(R.id.context_menu_more_button); buttonMore.setImageDrawable( iconsCache.getIcon( R.drawable.map_overflow_menu_white, light ? R.color.icon_color : R.color.dashboard_subheader_text_dark)); buttonMore.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { menu.buttonMorePressed(); } }); buildBottomView(); getMapActivity().getMapLayers().getMapControlsLayer().setControlsClickable(false); return view; }