add some icons and style

This commit is contained in:
tibbi 2016-06-01 19:50:25 +02:00
parent aa56e863cf
commit 95d885e3d5
20 changed files with 13 additions and 10 deletions

View File

@ -21,7 +21,7 @@
android:layout_height="@dimen/icon_size"
android:layout_alignParentRight="true"
android:layout_below="@id/color_picker"
android:padding="4dp"
android:padding="@dimen/icon_padding"
android:src="@mipmap/undo"/>
</RelativeLayout>

View File

@ -3,14 +3,14 @@
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/menu_save"
android:icon="@android:drawable/ic_menu_save"
android:title="Save"
app:showAsAction="always"/>
android:icon="@mipmap/save"
android:title="@string/save"
app:showAsAction="ifRoom"/>
<item
android:id="@+id/menu_share"
android:icon="@android:drawable/ic_menu_share"
android:title="Share"
app:showAsAction="always"/>
android:icon="@mipmap/share"
android:title="@string/share"
app:showAsAction="ifRoom"/>
<item
android:id="@+id/about"
android:title="@string/about"

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 397 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 276 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 496 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 391 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 698 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 473 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 504 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 938 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 601 B

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#3F51B5</color>
<color name="colorPrimaryDark">#303F9F</color>
<color name="colorAccent">#FF4081</color>
<color name="colorPrimary">#ffff6f00</color>
<color name="colorPrimaryDark">#ffe46300</color>
<color name="colorAccent">@color/colorPrimary</color>
</resources>

View File

@ -1,4 +1,5 @@
<resources>
<dimen name="activity_margin">16dp</dimen>
<dimen name="icon_size">48dp</dimen>
<dimen name="icon_padding">8dp</dimen>
</resources>

View File

@ -1,5 +1,7 @@
<resources>
<string name="app_name">Simple Draw</string>
<string name="save">Save</string>
<string name="share">Share</string>
<string name="share_via">Share via</string>
<string name="saving_error">Could not save the file</string>
<string name="saving_ok">Image has been saved successfully</string>