1
0
mirror of https://github.com/sismics/docs.git synced 2026-01-05 04:49:33 +00:00

Android: Document edit activity filling

This commit is contained in:
jendib
2014-12-04 22:32:53 +01:00
parent 323b95ad7a
commit 89d66eca4a
13 changed files with 138 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 490 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 476 B

View File

@@ -2,6 +2,13 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/edit"
app:showAsAction="ifRoom"
android:icon="@drawable/ic_create_white_24dp"
android:title="@string/edit_document">
</item>
<item
android:id="@+id/upload_file"
app:showAsAction="ifRoom"

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/save"
app:showAsAction="ifRoom"
android:icon="@drawable/ic_done_white_24dp"
android:title="@string/save">
</item>
</menu>

View File

@@ -74,6 +74,8 @@
<string name="language_french">French</string>
<string name="language_english">English</string>
<string name="language_japanese">Japanese</string>
<string name="save">Save</string>
<string name="edit_document">Edit document</string>
</resources>