Add favorite custom colors
This commit is contained in:
parent
48bcb696c4
commit
c606260def
5 changed files with 303 additions and 29 deletions
17
OsmAnd/res/layout/colors_card.xml
Normal file
17
OsmAnd/res/layout/colors_card.xml
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<com.google.android.material.internal.FlowLayout
|
||||
android:id="@+id/select_color"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/content_padding_small"
|
||||
android:layout_marginLeft="@dimen/content_padding_small"
|
||||
android:layout_marginTop="@dimen/context_menu_padding_margin_tiny"
|
||||
android:layout_marginBottom="@dimen/content_padding_half" />
|
||||
|
||||
</LinearLayout>
|
|
@ -458,6 +458,12 @@
|
|||
android:layout_height="1dp"
|
||||
android:background="?attr/dashboard_divider" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:id="@+id/container"/>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
|
|
|
@ -22,6 +22,7 @@ import android.view.inputmethod.InputMethodManager;
|
|||
import android.widget.EditText;
|
||||
import android.widget.FrameLayout;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.ScrollView;
|
||||
import android.widget.TextView;
|
||||
|
||||
|
@ -52,6 +53,10 @@ import net.osmand.plus.helpers.AndroidUiHelper;
|
|||
import net.osmand.plus.helpers.ColorDialogs;
|
||||
import net.osmand.plus.mapcontextmenu.MapContextMenu;
|
||||
import net.osmand.plus.mapcontextmenu.other.HorizontalSelectionAdapter;
|
||||
import net.osmand.plus.routepreparationmenu.cards.BaseCard;
|
||||
import net.osmand.plus.routepreparationmenu.cards.BaseCard.CardListener;
|
||||
import net.osmand.plus.track.ColorsCard;
|
||||
import net.osmand.plus.track.CustomColorBottomSheet.ColorPickerListener;
|
||||
import net.osmand.plus.widgets.FlowLayout;
|
||||
import net.osmand.util.Algorithms;
|
||||
|
||||
|
@ -72,7 +77,7 @@ import static net.osmand.data.FavouritePoint.DEFAULT_UI_ICON_ID;
|
|||
import static net.osmand.plus.FavouritesDbHelper.FavoriteGroup.PERSONAL_CATEGORY;
|
||||
import static net.osmand.plus.FavouritesDbHelper.FavoriteGroup.isPersonalCategoryDisplayName;
|
||||
|
||||
public abstract class PointEditorFragmentNew extends BaseOsmAndFragment {
|
||||
public abstract class PointEditorFragmentNew extends BaseOsmAndFragment implements ColorPickerListener, CardListener {
|
||||
|
||||
public static final String TAG = PointEditorFragmentNew.class.getSimpleName();
|
||||
|
||||
|
@ -458,35 +463,38 @@ public abstract class PointEditorFragmentNew extends BaseOsmAndFragment {
|
|||
}
|
||||
|
||||
private void createColorSelector() {
|
||||
FlowLayout selectColor = view.findViewById(R.id.select_color);
|
||||
for (int color : ColorDialogs.pallette) {
|
||||
selectColor.addView(createColorItemView(color, selectColor), new FlowLayout.LayoutParams(0, 0));
|
||||
trackColoringCard = new ColorsCard(getMapActivity(), 0, this, ColorDialogs.pallette);
|
||||
trackColoringCard.setListener(this);
|
||||
|
||||
LinearLayout container = view.findViewById(R.id.container);
|
||||
container.addView(trackColoringCard.build(getMapActivity()));
|
||||
}
|
||||
int customColor = getPointColor();
|
||||
if (!ColorDialogs.isPaletteColor(customColor)) {
|
||||
selectColor.addView(createColorItemView(customColor, selectColor), new FlowLayout.LayoutParams(0, 0));
|
||||
|
||||
@Override
|
||||
public void onColorSelected(Integer prevColor, int newColor) {
|
||||
trackColoringCard.onColorSelected(prevColor, newColor);
|
||||
selectedColor = trackColoringCard.getSelectedColor();
|
||||
updateColorSelector(selectedColor, view);
|
||||
}
|
||||
|
||||
ColorsCard trackColoringCard;
|
||||
|
||||
@Override
|
||||
public void onCardLayoutNeeded(@NonNull BaseCard card) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCardPressed(@NonNull BaseCard card) {
|
||||
if (card instanceof ColorsCard) {
|
||||
selectedColor = ((ColorsCard) card).getSelectedColor();
|
||||
updateColorSelector(selectedColor, view);
|
||||
}
|
||||
}
|
||||
|
||||
private View createColorItemView(@ColorInt final int color, final FlowLayout rootView) {
|
||||
FrameLayout colorItemView = (FrameLayout) UiUtilities.getInflater(getContext(), nightMode)
|
||||
.inflate(R.layout.point_editor_button, rootView, false);
|
||||
ImageView outline = colorItemView.findViewById(R.id.outline);
|
||||
outline.setImageDrawable(
|
||||
UiUtilities.tintDrawable(AppCompatResources.getDrawable(app, R.drawable.bg_point_circle_contour),
|
||||
ContextCompat.getColor(app,
|
||||
nightMode ? R.color.stroked_buttons_and_links_outline_dark
|
||||
: R.color.stroked_buttons_and_links_outline_light)));
|
||||
ImageView backgroundCircle = colorItemView.findViewById(R.id.background);
|
||||
backgroundCircle.setImageDrawable(UiUtilities.tintDrawable(AppCompatResources.getDrawable(app, R.drawable.bg_point_circle), color));
|
||||
backgroundCircle.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
updateColorSelector(color, rootView);
|
||||
}
|
||||
});
|
||||
colorItemView.setTag(color);
|
||||
return colorItemView;
|
||||
public void onCardButtonPressed(@NonNull BaseCard card, int buttonIndex) {
|
||||
|
||||
}
|
||||
|
||||
private void updateColorSelector(int color, View rootView) {
|
||||
|
|
|
@ -36,9 +36,9 @@ import java.util.ArrayList;
|
|||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public class RouteInfoCard extends BaseCard {
|
||||
import static net.osmand.plus.track.ColorsCard.MINIMUM_CONTRAST_RATIO;
|
||||
|
||||
private static final int MINIMUM_CONTRAST_RATIO = 3;
|
||||
public class RouteInfoCard extends BaseCard {
|
||||
|
||||
private RouteStatistics routeStatistics;
|
||||
private GPXTrackAnalysis analysis;
|
||||
|
|
243
OsmAnd/src/net/osmand/plus/track/ColorsCard.java
Normal file
243
OsmAnd/src/net/osmand/plus/track/ColorsCard.java
Normal file
|
@ -0,0 +1,243 @@
|
|||
package net.osmand.plus.track;
|
||||
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
|
||||
import androidx.annotation.ColorInt;
|
||||
import androidx.core.content.ContextCompat;
|
||||
import androidx.core.graphics.ColorUtils;
|
||||
import androidx.fragment.app.Fragment;
|
||||
|
||||
import com.google.android.material.internal.FlowLayout;
|
||||
|
||||
import net.osmand.AndroidUtils;
|
||||
import net.osmand.PlatformUtil;
|
||||
import net.osmand.plus.OsmandApplication;
|
||||
import net.osmand.plus.R;
|
||||
import net.osmand.plus.UiUtilities;
|
||||
import net.osmand.plus.activities.MapActivity;
|
||||
import net.osmand.plus.routepreparationmenu.cards.BaseCard;
|
||||
import net.osmand.plus.track.CustomColorBottomSheet.ColorPickerListener;
|
||||
import net.osmand.util.Algorithms;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class ColorsCard extends BaseCard implements ColorPickerListener {
|
||||
|
||||
public static final int MAX_CUSTOM_COLORS = 6;
|
||||
public static final int MINIMUM_CONTRAST_RATIO = 3;
|
||||
|
||||
private static final Log log = PlatformUtil.getLog(TrackColoringCard.class);
|
||||
|
||||
public static final int INVALID_VALUE = -1;
|
||||
|
||||
private Fragment targetFragment;
|
||||
|
||||
private int[] colors;
|
||||
private List<Integer> customColors;
|
||||
|
||||
private int selectedColor;
|
||||
|
||||
@Override
|
||||
public int getCardLayoutId() {
|
||||
return R.layout.colors_card;
|
||||
}
|
||||
|
||||
public ColorsCard(MapActivity mapActivity, int selectedColor, Fragment targetFragment, int[] colors) {
|
||||
super(mapActivity);
|
||||
this.targetFragment = targetFragment;
|
||||
this.selectedColor = selectedColor;
|
||||
this.colors = colors;
|
||||
customColors = getCustomColors();
|
||||
}
|
||||
|
||||
public int getSelectedColor() {
|
||||
return selectedColor;
|
||||
}
|
||||
|
||||
public void setSelectedColor(int selectedColor) {
|
||||
this.selectedColor = selectedColor;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onColorSelected(Integer prevColor, int newColor) {
|
||||
if (prevColor != null) {
|
||||
int index = customColors.indexOf(prevColor);
|
||||
if (index != INVALID_VALUE) {
|
||||
customColors.set(index, newColor);
|
||||
}
|
||||
if (selectedColor == prevColor) {
|
||||
selectedColor = newColor;
|
||||
}
|
||||
} else if (customColors.size() < MAX_CUSTOM_COLORS) {
|
||||
customColors.add(newColor);
|
||||
selectedColor = newColor;
|
||||
}
|
||||
saveCustomColors();
|
||||
updateContent();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void updateContent() {
|
||||
createColorSelector();
|
||||
updateColorSelector(selectedColor, view);
|
||||
}
|
||||
|
||||
private void createColorSelector() {
|
||||
FlowLayout selectColor = view.findViewById(R.id.select_color);
|
||||
selectColor.removeAllViews();
|
||||
|
||||
for (int color : customColors) {
|
||||
selectColor.addView(createColorItemView(color, selectColor, true));
|
||||
}
|
||||
if (customColors.size() < 6) {
|
||||
selectColor.addView(createAddCustomColorItemView(selectColor));
|
||||
}
|
||||
selectColor.addView(createDividerView(selectColor));
|
||||
|
||||
for (int color : colors) {
|
||||
selectColor.addView(createColorItemView(color, selectColor, false));
|
||||
}
|
||||
updateColorSelector(selectedColor, selectColor);
|
||||
}
|
||||
|
||||
private void updateColorSelector(int color, View rootView) {
|
||||
View oldColor = rootView.findViewWithTag(selectedColor);
|
||||
if (oldColor != null) {
|
||||
oldColor.findViewById(R.id.outline).setVisibility(View.INVISIBLE);
|
||||
ImageView icon = oldColor.findViewById(R.id.icon);
|
||||
icon.setImageDrawable(UiUtilities.tintDrawable(icon.getDrawable(), R.color.icon_color_default_light));
|
||||
}
|
||||
View newColor = rootView.findViewWithTag(color);
|
||||
if (newColor != null) {
|
||||
newColor.findViewById(R.id.outline).setVisibility(View.VISIBLE);
|
||||
}
|
||||
}
|
||||
|
||||
private View createColorItemView(@ColorInt final int color, final FlowLayout rootView, boolean customColor) {
|
||||
View colorItemView = createCircleView(rootView);
|
||||
|
||||
ImageView backgroundCircle = colorItemView.findViewById(R.id.background);
|
||||
|
||||
Drawable transparencyIcon = getTransparencyIcon(app, color);
|
||||
Drawable colorIcon = app.getUIUtilities().getPaintedIcon(R.drawable.bg_point_circle, color);
|
||||
Drawable layeredIcon = UiUtilities.getLayeredIcon(transparencyIcon, colorIcon);
|
||||
double contrastRatio = ColorUtils.calculateContrast(color, ContextCompat.getColor(app, nightMode ? R.color.card_and_list_background_dark : R.color.card_and_list_background_light));
|
||||
if (contrastRatio < MINIMUM_CONTRAST_RATIO) {
|
||||
backgroundCircle.setBackgroundResource(nightMode ? R.drawable.circle_contour_bg_dark : R.drawable.circle_contour_bg_light);
|
||||
}
|
||||
backgroundCircle.setImageDrawable(layeredIcon);
|
||||
backgroundCircle.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
updateColorSelector(color, rootView);
|
||||
selectedColor = color;
|
||||
|
||||
CardListener listener = getListener();
|
||||
if (listener != null) {
|
||||
listener.onCardPressed(ColorsCard.this);
|
||||
}
|
||||
}
|
||||
});
|
||||
if (customColor) {
|
||||
backgroundCircle.setOnLongClickListener(new View.OnLongClickListener() {
|
||||
@Override
|
||||
public boolean onLongClick(View v) {
|
||||
MapActivity mapActivity = getMapActivity();
|
||||
if (mapActivity != null) {
|
||||
CustomColorBottomSheet.showInstance(mapActivity.getSupportFragmentManager(), targetFragment, color);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
colorItemView.setTag(color);
|
||||
return colorItemView;
|
||||
}
|
||||
|
||||
private View createAddCustomColorItemView(FlowLayout rootView) {
|
||||
View colorItemView = createCircleView(rootView);
|
||||
ImageView backgroundCircle = colorItemView.findViewById(R.id.background);
|
||||
|
||||
int bgColorId = nightMode ? R.color.activity_background_color_dark : R.color.activity_background_color_light;
|
||||
Drawable backgroundIcon = app.getUIUtilities().getIcon(R.drawable.bg_point_circle, bgColorId);
|
||||
|
||||
ImageView icon = colorItemView.findViewById(R.id.icon);
|
||||
icon.setVisibility(View.VISIBLE);
|
||||
int activeColorResId = nightMode ? R.color.icon_color_active_dark : R.color.icon_color_active_light;
|
||||
icon.setImageDrawable(app.getUIUtilities().getIcon(R.drawable.ic_action_plus, activeColorResId));
|
||||
|
||||
backgroundCircle.setImageDrawable(backgroundIcon);
|
||||
backgroundCircle.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
MapActivity mapActivity = getMapActivity();
|
||||
if (mapActivity != null) {
|
||||
CustomColorBottomSheet.showInstance(mapActivity.getSupportFragmentManager(), targetFragment, null);
|
||||
}
|
||||
}
|
||||
});
|
||||
return colorItemView;
|
||||
}
|
||||
|
||||
private View createDividerView(FlowLayout rootView) {
|
||||
LayoutInflater themedInflater = UiUtilities.getInflater(view.getContext(), nightMode);
|
||||
View divider = themedInflater.inflate(R.layout.simple_divider_item, rootView, false);
|
||||
|
||||
LinearLayout dividerContainer = new LinearLayout(view.getContext());
|
||||
dividerContainer.addView(divider);
|
||||
dividerContainer.setPadding(0, AndroidUtils.dpToPx(app, 1), 0, AndroidUtils.dpToPx(app, 5));
|
||||
|
||||
return dividerContainer;
|
||||
}
|
||||
|
||||
private View createCircleView(ViewGroup rootView) {
|
||||
LayoutInflater themedInflater = UiUtilities.getInflater(view.getContext(), nightMode);
|
||||
View circleView = themedInflater.inflate(R.layout.point_editor_button, rootView, false);
|
||||
ImageView outline = circleView.findViewById(R.id.outline);
|
||||
int colorId = nightMode ? R.color.stroked_buttons_and_links_outline_dark : R.color.stroked_buttons_and_links_outline_light;
|
||||
Drawable contourIcon = app.getUIUtilities().getIcon(R.drawable.bg_point_circle_contour, colorId);
|
||||
outline.setImageDrawable(contourIcon);
|
||||
return circleView;
|
||||
}
|
||||
|
||||
private Drawable getTransparencyIcon(OsmandApplication app, @ColorInt int color) {
|
||||
int colorWithoutAlpha = UiUtilities.removeAlpha(color);
|
||||
int transparencyColor = UiUtilities.getColorWithAlpha(colorWithoutAlpha, 0.8f);
|
||||
return app.getUIUtilities().getPaintedIcon(R.drawable.ic_bg_transparency, transparencyColor);
|
||||
}
|
||||
|
||||
private List<Integer> getCustomColors() {
|
||||
List<Integer> colors = new ArrayList<>();
|
||||
List<String> colorNames = app.getSettings().CUSTOM_TRACK_COLORS.getStringsList();
|
||||
if (colorNames != null) {
|
||||
for (String colorHex : colorNames) {
|
||||
try {
|
||||
if (!Algorithms.isEmpty(colorHex)) {
|
||||
int color = Algorithms.parseColor(colorHex);
|
||||
colors.add(color);
|
||||
}
|
||||
} catch (IllegalArgumentException e) {
|
||||
log.error(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
return colors;
|
||||
}
|
||||
|
||||
private void saveCustomColors() {
|
||||
List<String> colorNames = new ArrayList<>();
|
||||
for (Integer color : customColors) {
|
||||
String colorHex = Algorithms.colorToString(color);
|
||||
colorNames.add(colorHex);
|
||||
}
|
||||
app.getSettings().CUSTOM_TRACK_COLORS.setStringsList(colorNames);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue