c1bb9e2a38963b1ade66e2c57d2e4829014f3e2d
[pub/Android/ownCloud.git] / src / de / mobilcom / debitel / cloud / 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 de.mobilcom.debitel.cloud.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 de.mobilcom.debitel.cloud.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 closeBtn = (Button) findViewById(R.id.failed_uploadactivity_close_button);
48 // Set background of 'close' button
49 boolean customButtons = getResources().getBoolean(R.bool.custom_buttons);
50 if (customButtons)
51 closeBtn.setBackgroundResource(R.drawable.btn_default);
52
53 closeBtn.setOnClickListener(new OnClickListener() {
54 @Override
55 public void onClick(View v) {
56 finish();
57 }
58 });
59 }
60 }