Merge pull request #11103 from osmandapp/Icons-in-Configure-Map

Icons in Configure Map / Screen
This commit is contained in:
Vitaliy 2021-03-10 13:56:30 +02:00 committed by GitHub
commit 5f5c315955
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,7 @@ import androidx.annotation.LayoutRes;
import androidx.annotation.Nullable;
import androidx.annotation.StringRes;
import androidx.core.content.ContextCompat;
import net.osmand.plus.ContextMenuAdapter.OnItemDeleteAction;
public class ContextMenuItem {
@ -164,7 +165,9 @@ public class ContextMenuItem {
return description;
}
public OnItemDeleteAction getItemDeleteAction() { return itemDeleteAction; }
public OnItemDeleteAction getItemDeleteAction() {
return itemDeleteAction;
}
public ContextMenuAdapter.ItemClickListener getItemClickListener() {
return itemClickListener;
@ -207,9 +210,7 @@ public class ContextMenuItem {
}
public void setColor(Context context, @ColorRes int colorRes) {
if (colorRes != INVALID_ID) {
this.color = ContextCompat.getColor(context, colorRes);
}
color = colorRes != INVALID_ID ? ContextCompat.getColor(context, colorRes) : null;
}
public void setSelected(boolean selected) {