2013-03-17 13:38:42 +04:00
|
|
|
<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"
|
2013-10-11 17:08:32 +04:00
|
|
|
android:background="@color/background_color"
|
2013-03-17 13:38:42 +04:00
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<TextView android:id="@+id/faild_upload_message"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minWidth="100dp"/>
|
|
|
|
|
2013-10-29 17:10:42 +04:00
|
|
|
<com.owncloud.android.ui.CustomButton
|
2013-03-17 13:38:42 +04:00
|
|
|
android:id="@+id/failed_uploadactivity_close_button"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Dismiss" />
|
|
|
|
|
|
|
|
</LinearLayout>
|