FailedUploadActivity.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. package com.owncloud.android.ui.activity;
  18. import com.owncloud.android.R;
  19. import com.owncloud.android.ui.CustomButton;
  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.TextView;
  25. /**
  26. * This Activity is used to display a detail message for failed uploads
  27. *
  28. * The entry-point for this activity is the 'Failed upload Notification"
  29. *
  30. * @author andomaex / Matthias Baumann
  31. */
  32. public class FailedUploadActivity extends Activity {
  33. public static final String MESSAGE = "message";
  34. @Override
  35. public void onCreate(Bundle savedInstanceState) {
  36. super.onCreate(savedInstanceState);
  37. setContentView(R.layout.failed_upload_message_view);
  38. String message = getIntent().getStringExtra(MESSAGE);
  39. TextView textView = (TextView) findViewById(R.id.faild_upload_message);
  40. textView.setText(message);
  41. CustomButton closeBtn = (CustomButton) findViewById(R.id.failed_uploadactivity_close_button);
  42. closeBtn.setOnClickListener(new OnClickListener() {
  43. @Override
  44. public void onClick(View v) {
  45. finish();
  46. }
  47. });
  48. }
  49. }