/* 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 . * */ 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())); } }