12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /**
- * ownCloud Android client application
- *
- * Copyright (C) 2015 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 <http://www.gnu.org/licenses/>.
- *
- */
- package com.owncloud.android.ui.activity;
- import android.accounts.Account;
- import android.os.Bundle;
- import android.view.View.OnClickListener;
- import com.owncloud.android.datamodel.OCFile;
- import com.owncloud.android.ui.fragment.FileFragment;
- import com.owncloud.android.ui.fragment.OCFileListFragment;
- public class UploadPathActivity extends FolderPickerActivity implements FileFragment.ContainerActivity,
- OnClickListener, OnEnforceableRefreshListener {
- public static final String KEY_INSTANT_UPLOAD_PATH = "INSTANT_UPLOAD_PATH";
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- String instantUploadPath = getIntent().getStringExtra(KEY_INSTANT_UPLOAD_PATH);
- // The caller activity (Preferences) is not a FileActivity, so it has no OCFile, only a path.
- OCFile folder = new OCFile(instantUploadPath);
- setFile(folder);
- }
- /**
- * Called when the ownCloud {@link Account} associated to the Activity was
- * just updated.
- */
- @Override
- protected void onAccountSet(boolean stateWasRecovered) {
- super.onAccountSet(stateWasRecovered);
- if (getAccount() != null) {
- updateFileFromDB();
- OCFile folder = getFile();
- if (folder == null || !folder.isFolder()) {
- // fall back to root folder
- setFile(getStorageManager().getFileByPath(OCFile.ROOT_PATH));
- folder = getFile();
- }
- onBrowsedDownTo(folder);
- if (!stateWasRecovered) {
- OCFileListFragment listOfFolders = getListOfFilesFragment();
- // TODO Enable when "On Device" is recovered ?
- listOfFolders.listDirectory(folder/*, false*/);
- startSyncFolderOperation(folder, false);
- }
- updateNavigationElementsInActionBar();
- }
- }
- }
|