Android Open Source - android-file-picker File Chooser






From Project

Back to project page android-file-picker.

License

The source code is released under:

GNU Lesser General Public License

If you think the Android project android-file-picker listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * ?Copyright 2013 Jose F. Maldonado?/*from  ww w. ja va2 s  .  c  o  m*/
 *
 *  This file is part of aFileDialog.
 *
 *  aFileDialog is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU Lesser General Public License as published 
 *  by the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  aFileDialog 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 Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public License
 *  along with aFileDialog. If not, see <http://www.gnu.org/licenses/>.
 */

package org.bakchuda.android.filePicker;

import android.content.Context;
import android.widget.LinearLayout;

/**
 * This interface defines all the methods that a file chooser must implement, in order to being able to make use of the class FileChooserUtils.
 */
interface FileChooser {

  /**
   * Gets the root of the layout 'file_chooser.xml'.
   * 
   * @return A linear layout.
   */
  LinearLayout getRootLayout();
  
  /**
   * Set the name of the current folder.
   * 
   * @param name The current folder's name.
   */
  void setCurrentFolderName(String name);
  
  /**
   * Returns the current context of the file chooser.
   * 
   * @return The current context.
   */
  Context getContext();
}




Java Source Code List

org.bakchuda.android.filePicker.FileChooserActivity.java
org.bakchuda.android.filePicker.FileChooserCore.java
org.bakchuda.android.filePicker.FileChooserDialog.java
org.bakchuda.android.filePicker.FileChooserLabels.java
org.bakchuda.android.filePicker.FileChooser.java
org.bakchuda.android.filePicker.view.FileItem.java