diff --git a/OsmAnd/res/drawable-hdpi/ic_action_map.png b/OsmAnd/res/drawable-hdpi/ic_action_map.png new file mode 100644 index 0000000000..1cce0afd80 Binary files /dev/null and b/OsmAnd/res/drawable-hdpi/ic_action_map.png differ diff --git a/OsmAnd/res/drawable-mdpi/ic_action_map.png b/OsmAnd/res/drawable-mdpi/ic_action_map.png new file mode 100644 index 0000000000..88ef06c41e Binary files /dev/null and b/OsmAnd/res/drawable-mdpi/ic_action_map.png differ diff --git a/OsmAnd/res/drawable-xhdpi/ic_action_map.png b/OsmAnd/res/drawable-xhdpi/ic_action_map.png new file mode 100644 index 0000000000..a149624dfe Binary files /dev/null and b/OsmAnd/res/drawable-xhdpi/ic_action_map.png differ diff --git a/OsmAnd/res/drawable-xxhdpi/ic_action_map.png b/OsmAnd/res/drawable-xxhdpi/ic_action_map.png new file mode 100644 index 0000000000..7d7fac2d75 Binary files /dev/null and b/OsmAnd/res/drawable-xxhdpi/ic_action_map.png differ diff --git a/OsmAnd/res/layout/main.xml b/OsmAnd/res/layout/main.xml index 26f704d15d..341d033692 100644 --- a/OsmAnd/res/layout/main.xml +++ b/OsmAnd/res/layout/main.xml @@ -47,6 +47,6 @@ android:layout_gravity="start" android:choiceMode="singleChoice" android:divider="@drawable/divider" - android:dividerHeight="1px" /> + android:dividerHeight="1dp" /> \ No newline at end of file diff --git a/OsmAnd/src/net/osmand/plus/activities/MainMenuActivity.java b/OsmAnd/src/net/osmand/plus/activities/MainMenuActivity.java index f09786ecc6..585239d98d 100644 --- a/OsmAnd/src/net/osmand/plus/activities/MainMenuActivity.java +++ b/OsmAnd/src/net/osmand/plus/activities/MainMenuActivity.java @@ -108,8 +108,8 @@ public class MainMenuActivity extends BaseDownloadActivity { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) { FloatingActionButton fabButton = new FloatingActionButton.Builder(this) - .withDrawable(getResources().getDrawable(R.drawable.ic_ac_settings)) - .withButtonColor(Color.WHITE) + .withDrawable(getResources().getDrawable(R.drawable.ic_action_map)) + .withButtonColor(Color.parseColor("#ff8f00")) .withGravity(Gravity.BOTTOM | Gravity.RIGHT) .withMargins(0, 0, 16, 16) .create();