123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /* ownCloud Android client application
- * Copyright (C) 2011 Bartek Przybylski
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * 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 eu.alefzero.owncloud.ui.fragment;
- import android.accounts.Account;
- import android.accounts.AccountManager;
- import android.app.FragmentManager;
- import android.app.Service;
- import android.content.Intent;
- import android.database.Cursor;
- import android.net.Uri;
- import android.os.Bundle;
- import android.support.v4.app.FragmentTransaction;
- import android.view.LayoutInflater;
- import android.view.View;
- import android.view.ViewGroup;
- import android.widget.AdapterView;
- import android.widget.TextView;
- import eu.alefzero.owncloud.R;
- import eu.alefzero.owncloud.authenticator.AccountAuthenticator;
- import eu.alefzero.owncloud.db.ProviderMeta.ProviderTableMeta;
- import eu.alefzero.owncloud.ui.FragmentListView;
- import eu.alefzero.owncloud.ui.activity.FileDetailActivity;
- import eu.alefzero.owncloud.ui.activity.FileDisplayActivity;
- import eu.alefzero.owncloud.ui.adapter.FileListListAdapter;
- /**
- * A Fragment that lists all files and folders in a given path.
- * @author Bartek Przybylski
- *
- */
- public class FileList extends FragmentListView {
- private Cursor mCursor;
- private Account mAccount;
- private AccountManager mAccountManager;
- private String mDirName;
- private String mParentId;
- public FileList() {
- mDirName = null;
- mParentId = null;
- }
- public FileList(String dirName, String parentId) {
- mDirName = dirName;
- mParentId = parentId;
- }
-
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- mAccountManager = (AccountManager)getActivity().getSystemService(Service.ACCOUNT_SERVICE);
- mAccount = mAccountManager.getAccountsByType(AccountAuthenticator.ACCOUNT_TYPE)[0];
- populateFileList();
- }
-
- @Override
- public void onItemClick(AdapterView<?> l, View v, int position, long id) {
- FileDetail fd = (FileDetail) getFragmentManager().findFragmentById(R.id.fileDetail);
- if (!mCursor.moveToPosition(position)) {
- throw new IndexOutOfBoundsException("Incorrect item selected");
- }
-
- if (mCursor.getString(mCursor.getColumnIndex(ProviderTableMeta.FILE_CONTENT_TYPE)).equals("DIR")) {
- String id_ = mCursor.getString(mCursor.getColumnIndex(ProviderTableMeta._ID));
- String dirname = mCursor.getString(mCursor.getColumnIndex(ProviderTableMeta.FILE_NAME));
- FileList fl = new FileList(dirname, id_);
- ((FileDisplayActivity)getActivity()).pushPath(dirname);
- FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
- ft.addToBackStack(null);
- ft.replace(R.id.file_list_container, fl);
- ft.commit();
- getSupportFragmentManager().executePendingTransactions();
- return;
- }
- Intent i = new Intent(getActivity(), FileDetailActivity.class);
- i.putExtra("FILE_NAME", ((TextView)v.findViewById(R.id.Filename)).getText());
- if (fd != null) {
- fd.setStuff(i);
- } else {
- startActivity(i);
- }
- }
-
- private void populateFileList() {
- if (mParentId == null || mDirName == null) {
- mCursor = getActivity().getContentResolver().query(ProviderTableMeta.CONTENT_URI,
- null,
- ProviderTableMeta.FILE_ACCOUNT_OWNER+"=?",
- new String[]{mAccount.name},
- null);
- } else {
- mCursor = getActivity().managedQuery(Uri.withAppendedPath(ProviderTableMeta.CONTENT_URI_DIR, mParentId),
- null,
- ProviderTableMeta.FILE_ACCOUNT_OWNER + "=?",
- new String[]{mAccount.name}, null);
- }
- setListAdapter(new FileListListAdapter(mCursor, getActivity()));
- }
- }
|