Merge branch 'develop' into file_browsing_refactoring
[pub/Android/ownCloud.git] / src / com / owncloud / android / ui / activity / FailedUploadActivity.java
1 /* ownCloud Android client application
2 * Copyright (C) 2012-2013 ownCloud Inc.
3 *
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.
7 *
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.
12 *
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/>.
15 *
16 */
17
18 package com.owncloud.android.ui.activity;
19
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;
26
27 import com.owncloud.android.R;
28
29 /**
30 * This Activity is used to display a detail message for failed uploads
31 *
32 * The entry-point for this activity is the 'Failed upload Notification"
33 *
34 * @author andomaex / Matthias Baumann
35 */
36 public class FailedUploadActivity extends Activity {
37
38 public static final String MESSAGE = "message";
39
40 @Override
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() {
49 @Override
50 public void onClick(View v) {
51 finish();
52 }
53 });
54 }
55 }