1 /* ownCloud Android client application
2 * Copyright (C) 2012-2013 ownCloud Inc.
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package com
.owncloud
.android
.ui
.activity
;
20 import android
.app
.Activity
;
21 import android
.os
.Bundle
;
22 import android
.view
.View
;
23 import android
.view
.View
.OnClickListener
;
24 import android
.widget
.Button
;
25 import android
.widget
.TextView
;
27 import com
.owncloud
.android
.R
;
30 * This Activity is used to display a detail message for failed uploads
32 * The entry-point for this activity is the 'Failed upload Notification"
34 * @author andomaex / Matthias Baumann
36 public class FailedUploadActivity
extends Activity
{
38 public static final String MESSAGE
= "message";
41 public void onCreate(Bundle savedInstanceState
) {
42 super.onCreate(savedInstanceState
);
43 setContentView(R
.layout
.failed_upload_message_view
);
44 String message
= getIntent().getStringExtra(MESSAGE
);
45 TextView textView
= (TextView
) findViewById(R
.id
.faild_upload_message
);
46 textView
.setText(message
);
47 Button close_button
= (Button
) findViewById(R
.id
.failed_uploadactivity_close_button
);
48 close_button
.setOnClickListener(new OnClickListener() {
50 public void onClick(View v
) {