diff --git a/OsmAnd/res/drawable-hdpi/list_activities_background_pushed.png b/OsmAnd/res/drawable-hdpi/list_activities_background_pushed.png new file mode 100644 index 0000000000..f253124d79 Binary files /dev/null and b/OsmAnd/res/drawable-hdpi/list_activities_background_pushed.png differ diff --git a/OsmAnd/res/drawable-hdpi/list_activities_background_unpushed.png b/OsmAnd/res/drawable-hdpi/list_activities_background_unpushed.png new file mode 100644 index 0000000000..9a53d536fd Binary files /dev/null and b/OsmAnd/res/drawable-hdpi/list_activities_background_unpushed.png differ diff --git a/OsmAnd/res/drawable-hdpi/list_activities_dot_marker1_content.9.png b/OsmAnd/res/drawable-hdpi/list_activities_dot_marker1_content.9.png deleted file mode 100644 index e1a94fd117..0000000000 Binary files a/OsmAnd/res/drawable-hdpi/list_activities_dot_marker1_content.9.png and /dev/null differ diff --git a/OsmAnd/res/drawable-hdpi/list_activities_dot_marker1_empty.9.png b/OsmAnd/res/drawable-hdpi/list_activities_dot_marker1_empty.9.png deleted file mode 100644 index a43e6bdc1e..0000000000 Binary files a/OsmAnd/res/drawable-hdpi/list_activities_dot_marker1_empty.9.png and /dev/null differ diff --git a/OsmAnd/res/drawable-hdpi/list_activities_dot_marker1_pressed.9.png b/OsmAnd/res/drawable-hdpi/list_activities_dot_marker1_pressed.9.png deleted file mode 100644 index 9b987c45ba..0000000000 Binary files a/OsmAnd/res/drawable-hdpi/list_activities_dot_marker1_pressed.9.png and /dev/null differ diff --git a/OsmAnd/res/drawable-hdpi/list_activities_dot_marker1_unpressed.png b/OsmAnd/res/drawable-hdpi/list_activities_dot_marker1_unpressed.png new file mode 100644 index 0000000000..ee0840d12f Binary files /dev/null and b/OsmAnd/res/drawable-hdpi/list_activities_dot_marker1_unpressed.png differ diff --git a/OsmAnd/res/drawable/indicator_custom_gray.xml b/OsmAnd/res/drawable/indicator_custom_gray.xml index 627fe7b3dc..febfe60688 100644 --- a/OsmAnd/res/drawable/indicator_custom_gray.xml +++ b/OsmAnd/res/drawable/indicator_custom_gray.xml @@ -2,10 +2,10 @@ - - - - - + + + + + \ No newline at end of file diff --git a/OsmAnd/src/net/osmand/plus/activities/OsmandBaseExpandableListAdapter.java b/OsmAnd/src/net/osmand/plus/activities/OsmandBaseExpandableListAdapter.java index 024ea07177..6a25d6fdad 100644 --- a/OsmAnd/src/net/osmand/plus/activities/OsmandBaseExpandableListAdapter.java +++ b/OsmAnd/src/net/osmand/plus/activities/OsmandBaseExpandableListAdapter.java @@ -11,12 +11,12 @@ public abstract class OsmandBaseExpandableListAdapter extends BaseExpandableList ImageView indicator = (ImageView) row.findViewById(R.id.explist_indicator); if (!isExpanded) { if (getChildrenCount(groupPosition) == 0) { - indicator.setImageResource(R.drawable.list_activities_dot_marker1_empty); + indicator.setImageResource(R.drawable.list_activities_dot_marker1_unpressed); } else { - indicator.setImageResource(R.drawable.list_activities_dot_marker1_content); + indicator.setImageResource(R.drawable.list_activities_background_unpushed); } } else { - indicator.setImageResource(R.drawable.list_activities_dot_marker1_pressed); + indicator.setImageResource(R.drawable.list_activities_background_pushed); } }