123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- /* ownCloud Android client application
- * Copyright (C) 2011 Bartek Przybylski
- * Copyright (C) 2012-2013 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.fragment;
- import java.io.File;
- import com.owncloud.android.Log_OC;
- import com.owncloud.android.R;
- import com.owncloud.android.ui.adapter.LocalFileListAdapter;
- import android.app.Activity;
- import android.os.Bundle;
- import android.os.Environment;
- import android.util.SparseBooleanArray;
- import android.view.LayoutInflater;
- import android.view.View;
- import android.view.ViewGroup;
- import android.widget.AdapterView;
- import android.widget.ImageView;
- import android.widget.ListView;
- /**
- * A Fragment that lists all files and folders in a given LOCAL path.
- *
- * @author David A. Velasco
- *
- */
- public class LocalFileListFragment extends ExtendedListFragment {
- private static final String TAG = "LocalFileListFragment";
-
- /** Reference to the Activity which this fragment is attached to. For callbacks */
- private LocalFileListFragment.ContainerActivity mContainerActivity;
-
- /** Directory to show */
- private File mDirectory = null;
-
- /** Adapter to connect the data from the directory with the View object */
- private LocalFileListAdapter mAdapter = null;
-
- /**
- * {@inheritDoc}
- */
- @Override
- public void onAttach(Activity activity) {
- super.onAttach(activity);
- try {
- mContainerActivity = (ContainerActivity) activity;
- } catch (ClassCastException e) {
- throw new ClassCastException(activity.toString() + " must implement " + LocalFileListFragment.ContainerActivity.class.getSimpleName());
- }
- }
-
-
- /**
- * {@inheritDoc}
- */
- @Override
- public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
- Log_OC.i(TAG, "onCreateView() start");
- View v = super.onCreateView(inflater, container, savedInstanceState);
- getListView().setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
- Log_OC.i(TAG, "onCreateView() end");
- return v;
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public void onActivityCreated(Bundle savedInstanceState) {
- Log_OC.i(TAG, "onActivityCreated() start");
-
- super.onCreate(savedInstanceState);
- mAdapter = new LocalFileListAdapter(mContainerActivity.getInitialDirectory(), getActivity());
- setListAdapter(mAdapter);
-
- Log_OC.i(TAG, "onActivityCreated() stop");
- }
-
-
- /**
- * Checks the file clicked over. Browses inside if it is a directory. Notifies the container activity in any case.
- */
- @Override
- public void onItemClick(AdapterView<?> l, View v, int position, long id) {
- File file = (File) mAdapter.getItem(position);
- if (file != null) {
- /// Click on a directory
- if (file.isDirectory()) {
- // just local updates
- listDirectory(file);
- // notify the click to container Activity
- mContainerActivity.onDirectoryClick(file);
-
- } else { /// Click on a file
- ImageView checkBoxV = (ImageView) v.findViewById(R.id.custom_checkbox);
- if (checkBoxV != null) {
- if (getListView().isItemChecked(position)) {
- checkBoxV.setImageResource(android.R.drawable.checkbox_on_background);
- } else {
- checkBoxV.setImageResource(android.R.drawable.checkbox_off_background);
- }
- }
- // notify the change to the container Activity
- mContainerActivity.onFileClick(file);
- }
-
- } else {
- Log_OC.w(TAG, "Null object in ListAdapter!!");
- }
- }
-
- /**
- * Call this, when the user presses the up button
- */
- public void onNavigateUp() {
- File parentDir = null;
- if(mDirectory != null) {
- parentDir = mDirectory.getParentFile(); // can be null
- }
- listDirectory(parentDir);
- }
-
- /**
- * Use this to query the {@link File} object for the directory
- * that is currently being displayed by this fragment
- *
- * @return File The currently displayed directory
- */
- public File getCurrentDirectory(){
- return mDirectory;
- }
-
-
- /**
- * Calls {@link LocalFileListFragment#listDirectory(File)} with a null parameter
- * to refresh the current directory.
- */
- public void listDirectory(){
- listDirectory(null);
- }
-
-
- /**
- * Lists the given directory on the view. When the input parameter is null,
- * it will either refresh the last known directory. list the root
- * if there never was a directory.
- *
- * @param directory Directory to be listed
- */
- public void listDirectory(File directory) {
-
- // Check input parameters for null
- if(directory == null) {
- if(mDirectory != null){
- directory = mDirectory;
- } else {
- directory = Environment.getExternalStorageDirectory(); // TODO be careful with the state of the storage; could not be available
- if (directory == null) return; // no files to show
- }
- }
-
-
- // if that's not a directory -> List its parent
- if(!directory.isDirectory()){
- Log_OC.w(TAG, "You see, that is not a directory -> " + directory.toString());
- directory = directory.getParentFile();
- }
- mList.clearChoices(); // by now, only files in the same directory will be kept as selected
- mAdapter.swapDirectory(directory);
- if (mDirectory == null || !mDirectory.equals(directory)) {
- mList.setSelectionFromTop(0, 0);
- }
- mDirectory = directory;
- }
-
- /**
- * Returns the fule paths to the files checked by the user
- *
- * @return File paths to the files checked by the user.
- */
- public String[] getCheckedFilePaths() {
- String [] result = null;
- SparseBooleanArray positions = mList.getCheckedItemPositions();
- if (positions.size() > 0) {
- Log_OC.d(TAG, "Returning " + positions.size() + " selected files");
- result = new String[positions.size()];
- for (int i=0; i<positions.size(); i++) {
- result[i] = ((File) mList.getItemAtPosition(positions.keyAt(i))).getAbsolutePath();
- }
- }
- return result;
- }
-
- /**
- * Interface to implement by any Activity that includes some instance of LocalFileListFragment
- *
- * @author David A. Velasco
- */
- public interface ContainerActivity {
- /**
- * Callback method invoked when a directory is clicked by the user on the files list
- *
- * @param file
- */
- public void onDirectoryClick(File directory);
-
- /**
- * Callback method invoked when a file (non directory) is clicked by the user on the files list
- *
- * @param file
- */
- public void onFileClick(File file);
-
-
- /**
- * Callback method invoked when the parent activity is fully created to get the directory to list firstly.
- *
- * @return Directory to list firstly. Can be NULL.
- */
- public File getInitialDirectory();
- }
- }
|