mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 21:55:48 +03:00
6c5f561342
- add simple Activity for none InstantUloads to show the whole error-message
19 lines
No EOL
676 B
XML
19 lines
No EOL
676 B
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/failed_upload_message_view"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:background="@color/owncloud_white"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView android:id="@+id/faild_upload_message"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minWidth="100dp"/>
|
|
|
|
<Button
|
|
android:id="@+id/failed_uploadactivity_close_button"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Dismiss" />
|
|
|
|
</LinearLayout> |