add some icons and style
|
@ -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>
|
||||
|
|
|
@ -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"
|
||||
|
|
After Width: | Height: | Size: 247 B |
After Width: | Height: | Size: 397 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 276 B |
After Width: | Height: | Size: 168 B |
After Width: | Height: | Size: 268 B |
After Width: | Height: | Size: 199 B |
After Width: | Height: | Size: 273 B |
After Width: | Height: | Size: 496 B |
After Width: | Height: | Size: 333 B |
After Width: | Height: | Size: 391 B |
After Width: | Height: | Size: 698 B |
After Width: | Height: | Size: 473 B |
After Width: | Height: | Size: 504 B |
After Width: | Height: | Size: 938 B |
After Width: | Height: | Size: 601 B |
|
@ -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>
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<resources>
|
||||
<dimen name="activity_margin">16dp</dimen>
|
||||
<dimen name="icon_size">48dp</dimen>
|
||||
<dimen name="icon_padding">8dp</dimen>
|
||||
</resources>
|
||||
|
|
|
@ -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>
|
||||
|
|