diff --git a/OsmAnd/res/layout/map_marker_item_on_map.xml b/OsmAnd/res/layout/map_marker_item_on_map.xml deleted file mode 100644 index 94a6134200..0000000000 --- a/OsmAnd/res/layout/map_marker_item_on_map.xml +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/OsmAnd/src/net/osmand/plus/mapmarkers/adapters/MapMarkerItemOnMapViewHolder.java b/OsmAnd/src/net/osmand/plus/mapmarkers/adapters/MapMarkerItemOnMapViewHolder.java deleted file mode 100644 index c252b5ec97..0000000000 --- a/OsmAnd/src/net/osmand/plus/mapmarkers/adapters/MapMarkerItemOnMapViewHolder.java +++ /dev/null @@ -1,31 +0,0 @@ -package net.osmand.plus.mapmarkers.adapters; - -import android.support.v7.widget.RecyclerView; -import android.view.View; -import android.widget.ImageButton; -import android.widget.ImageView; -import android.widget.TextView; - -import net.osmand.plus.R; - -public class MapMarkerItemOnMapViewHolder extends MapMarkerItemViewHolder { - - final ImageView iconDirection; - final ImageView iconReorder; - final TextView title; - final TextView distance; - final TextView point; - final TextView description; - final ImageButton optionsBtn; - - public MapMarkerItemOnMapViewHolder(View view) { - super(view); - iconDirection = (ImageView) view.findViewById(R.id.map_marker_direction_icon); - iconReorder = (ImageView) view.findViewById(R.id.map_marker_reorder_icon); - title = (TextView) view.findViewById(R.id.map_marker_title); - distance = (TextView) view.findViewById(R.id.map_marker_distance); - point = (TextView) view.findViewById(R.id.map_marker_point_text_view); - description = (TextView) view.findViewById(R.id.map_marker_description); - optionsBtn = (ImageButton) view.findViewById(R.id.map_marker_options_button); - } -}