X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/12b4b0397fa56622af3e67ad1b0754b7b6456ac1..00a8eb415aef8c79f6e657d88bbefe746a926086:/src/com/owncloud/android/ui/activity/UploadPathActivity.java diff --git a/src/com/owncloud/android/ui/activity/UploadPathActivity.java b/src/com/owncloud/android/ui/activity/UploadPathActivity.java new file mode 100644 index 00000000..2a493521 --- /dev/null +++ b/src/com/owncloud/android/ui/activity/UploadPathActivity.java @@ -0,0 +1,69 @@ +/* ownCloud Android client application + * Copyright (C) 2012-2014 ownCloud Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +package com.owncloud.android.ui.activity; + +import android.content.Intent; + +import android.os.Bundle; +import android.view.View; +import android.view.View.OnClickListener; +import android.widget.Toast; + + + +import com.owncloud.android.datamodel.OCFile; +import com.owncloud.android.ui.fragment.FileFragment; + + +public class UploadPathActivity extends FolderPickerActivity implements FileFragment.ContainerActivity, + OnClickListener, OnEnforceableRefreshListener { + + public static final int RESULT_OK_SET_UPLOAD_PATH = 1; + + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + + Intent intent = getIntent(); + String instantUploadPath = intent.getStringExtra("instant_upload_path"); + + OCFile folder = new OCFile(instantUploadPath); + + Toast.makeText(getApplicationContext(), instantUploadPath, Toast.LENGTH_LONG).show(); + +// onBrowsedDownTo(folder); + } + + + @Override + public void onClick(View v) { + if (v == mCancelBtn) { + finish(); + } else if (v == mChooseBtn) { + Intent i = getIntent(); + OCFile targetFile = (OCFile) i.getParcelableExtra(UploadPathActivity.EXTRA_TARGET_FILE); + + Intent data = new Intent(); + data.putExtra(EXTRA_CURRENT_FOLDER, getCurrentFolder()); + data.putExtra(EXTRA_TARGET_FILE, targetFile); + setResult(RESULT_OK_SET_UPLOAD_PATH, data); + finish(); + } + } +}