1
0
mirror of https://github.com/sismics/docs.git synced 2026-01-08 06:19:35 +00:00

Android: file upload (in progress), title marquee

This commit is contained in:
jendib
2014-11-30 16:11:35 +01:00
parent e17abfe411
commit 551c10e7a3
7 changed files with 40 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 271 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 325 B

View File

@@ -10,6 +10,7 @@
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:padding="16dp"
android:textSize="24dp"
android:hint="Title"/>
<EditText
@@ -20,6 +21,7 @@
android:layout_margin="8dp"
android:padding="16dp"
android:hint="Description"
android:textSize="18sp"
android:lines="2"/>
<LinearLayout
@@ -34,7 +36,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:textSize="16sp"
android:textSize="18sp"
android:padding="16dp"/>
<com.sismics.docs.ui.view.DatePickerView
@@ -43,6 +45,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:textSize="18sp"
android:text="15/11/2014"
android:padding="16dp"/>
@@ -59,5 +62,7 @@
android:id="@+id/tagsEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="18sp"
android:hint="Add tags"
android:layout_margin="8dp"/>
</LinearLayout>

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/upload_file"
app:showAsAction="ifRoom"
android:icon="@drawable/ic_file_upload_white_24dp"
android:title="@string/upload_file">
</item>
<item
android:id="@+id/share"
app:showAsAction="collapseActionView"

View File

@@ -54,5 +54,7 @@
<string name="share_default_name">Share link</string>
<string name="error_deleting_share">Error deleting the share</string>
<string name="send_share_to">Send share link to</string>
<string name="upload_file">Upload a file</string>
<string name="upload_from">Upload a file from</string>
</resources>