Does anyone know of a complete choose file dialog? Maybe one where you can filter out all files except for ones with specific extensions? The internet needs such an example. I have not found anything lightweight enough to implement easily into on of my projects. The only other options seem to being using OI FileManger's open intents, but that requires the user already having the file manager installed.

I would be extremely grateful if someone could point out a Dialog that would allow the user to browse folders and select a file, and return the path.

link|improve this question

9  
This is not a question. If you can't find a 'file dialog' then roll one with your own code. If you need help doing that ask a question, but don't expect others to write your code for you. – smith324 Aug 28 '10 at 22:26
8  
Geez, so harsh. – Aymon Fournier Aug 28 '10 at 22:32
6  
But this is what Stack Overflow is. A question answer site. – Moncader Sep 8 '10 at 9:01
1  
I agree with Moncader. If, as you say, "the Internet needs such an example," then this is YOUR opportunity to create one for such a noble purpose. SO is not a "rent a coder" site. On the other hand, if you're trying to build/use a file selection dialog and run into problems, then this is the place to come with your specific question. – Cal Jacobson Sep 8 '10 at 22:13
check this dreamincode.net/forums/topic/… – Kariyachan Nov 18 '11 at 3:21
show 1 more comment
feedback

3 Answers

up vote 40 down vote accepted
+50

Well if you are temping me with rep :D You just need to override onCreateDialog in an activity.

    //In an Activity
private String[] mFileList;
private File mPath = new File(Enviroment.getExternalStorageDirectory() + "//yourdir//");
private String mChosenFile;
private static final String FTYPE = ".txt";    
private static final int DIALOG_LOAD_FILE = 1000;

private void loadFileList(){
  try{
     mPath.mkdirs();
  }
  catch(SecurityException e){
     Log.e(TAG, "unable to write on the sd card " + e.toString());
  }
  if(mPath.exists()){
     FilenameFilter filter = new FilenameFilter(){
         public boolean accept(File dir, String filename){
             File sel = new File(dir, filename);
             return filename.contains(FTYPE) || sel.isDirectory();
         }
     };
     mFileList = mPath.list(filter);
  }
  else{
    mFileList= new String[0];
  }
}

  protected Dialog onCreateDialog(int id){
  Dialog dialog = null;
  AlertDialog.Builder builder = new Builder(this);

  switch(id){
  case DIALOG_LOAD_FILE:
   builder.setTitle("Choose your file");
   if(mFileList == null){
     Log.e(TAG, "Showing file picker before loading the file list");
     dialog = builder.create();
     return dialog;
   }
     builder.setItems(mFileList, new DialogInterface.OnClickListener(){
       public void onClick(DialogInterface dialog, int which){
          mChosenFile = mFileList[which];
          //you can do stuff with the file here too
       }
      });
  break;
  }
  dialog = builder.show();
  return dialog;
 } 

Hope this helps!

link|improve this answer
Add the ability to navigate folders and go up to parent folder, and you got it – Aymon Fournier Sep 7 '10 at 7:39
11  
If you can't modify the above to navigate the filesystem, I don't know how you're going to graft it into your app in the first place. When he's already bent the "rules" and written the code for you, I sure hope you're not really going to hold the bounty ransom for that. – Blumer Sep 8 '10 at 17:28
3  
I edited the code above to show how to include the folders. You should be able to figure out the rest. If you detect that the file pressed is a directory in onClick just set the new path and call onCreateDialog again. – schwiz Sep 8 '10 at 22:04
feedback

You may also use this file dialog http://code.google.com/p/android-file-dialog/

link|improve this answer
1  
+1 Thanks for the information. – MyNameIsZero Mar 8 '11 at 11:23
feedback

I have created FolderLayout which may help you. This link helped me

folderview.xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView android:id="@+id/path" android:text="Path"
        android:layout_width="match_parent" android:layout_height="wrap_content"></TextView>
    <ListView android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:id="@+id/list"></ListView>

</LinearLayout>

FolderLayout.java

package com.testsample.activity;




   public class FolderLayout extends LinearLayout implements OnItemClickListener {

    Context context;
    IFolderItemListener folderListener;
    private List<String> item = null;
    private List<String> path = null;
    private String root = "/";
    private TextView myPath;
    private ListView lstView;

    public FolderLayout(Context context, AttributeSet attrs) {
        super(context, attrs);

        // TODO Auto-generated constructor stub
        this.context = context;


        LayoutInflater layoutInflater = (LayoutInflater) context
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View view = layoutInflater.inflate(R.layout.folderview, this);

        myPath = (TextView) findViewById(R.id.path);
        lstView = (ListView) findViewById(R.id.list);

        Log.i("FolderView", "Constructed");
        getDir(root, lstView);

    }

    public void setIFolderItemListener(IFolderItemListener folderItemListener) {
        this.folderListener = folderItemListener;
    }

    //Set Directory for view at anytime
    public void setDir(String dirPath){
        getDir(dirPath, lstView);
    }


    private void getDir(String dirPath, ListView v) {

        myPath.setText("Location: " + dirPath);
        item = new ArrayList<String>();
        path = new ArrayList<String>();
        File f = new File(dirPath);
        File[] files = f.listFiles();

        if (!dirPath.equals(root)) {

            item.add(root);
            path.add(root);
            item.add("../");
            path.add(f.getParent());

        }
        for (int i = 0; i < files.length; i++) {
            File file = files[i];
            path.add(file.getPath());
            if (file.isDirectory())
                item.add(file.getName() + "/");
            else
                item.add(file.getName());

        }

        Log.i("Folders", files.length + "");

        setItemList(item);

    }

    //can manually set Item to display, if u want
    public void setItemList(List<String> item){
        ArrayAdapter<String> fileList = new ArrayAdapter<String>(context,
                R.layout.row, item);

        lstView.setAdapter(fileList);
        lstView.setOnItemClickListener(this);
    }


    public void onListItemClick(ListView l, View v, int position, long id) {
        File file = new File(path.get(position));
        if (file.isDirectory()) {
            if (file.canRead())
                getDir(path.get(position), l);
            else {
//what to do when folder is unreadable
                if (folderListener != null) {
                    folderListener.OnCannotFileRead(file);

                }

            }
        } else {

//what to do when file is clicked
//You can add more,like checking extension,and performing separate actions
            if (folderListener != null) {
                folderListener.OnFileClicked(file);
            }

        }
    }

    public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
        // TODO Auto-generated method stub
        onListItemClick((ListView) arg0, arg0, arg2, arg3);
    }

}

And an Interface IFolderItemListener to add what to do when a fileItem is clicked

IFolderItemListener.java

public interface IFolderItemListener {

    void OnCannotFileRead(File file);//implement what to do folder is Unreadable
    void OnFileClicked(File file);//What to do When a file is clicked
}

Also an xml to define the row

row.xml

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rowtext" android:layout_width="fill_parent"
    android:textSize="23sp" android:layout_height="match_parent"/>

How to Use in your Application

In your xml,

folders.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="match_parent"
    android:orientation="horizontal" android:weightSum="1">
    <com.testsample.activity.FolderLayout android:layout_height="match_parent" layout="@layout/folderview"
        android:layout_weight="0.35"
        android:layout_width="200dp" android:id="@+id/localfolders"></com.testsample.activity.FolderLayout></LinearLayout>

In Your Activity,

SampleFolderActivity.java

public class SampleFolderActivity extends Activity implements IFolderItemListener {

    FolderLayout localFolders;

    /** Called when the activity is first created. */

    @Override
    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        localFolders = (FolderLayout)findViewById(R.id.localfolders);
        localFolders.setIFolderItemListener(this);
            localFolders.setDir("./sys");//change directory if u want,default is root   

    }

    //Your stuff here for Cannot open Folder
    public void OnCannotFileRead(File file) {
        // TODO Auto-generated method stub
        new AlertDialog.Builder(this)
        .setIcon(R.drawable.icon)
        .setTitle(
                "[" + file.getName()
                        + "] folder can't be read!")
        .setPositiveButton("OK",
                new DialogInterface.OnClickListener() {

                    public void onClick(DialogInterface dialog,
                            int which) {


                    }
                }).show();

    }


    //Your stuff here for file Click
    public void OnFileClicked(File file) {
        // TODO Auto-generated method stub
        new AlertDialog.Builder(this)
        .setIcon(R.drawable.icon)
        .setTitle("[" + file.getName() + "]")
        .setPositiveButton("OK",
                new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog,
                            int which) {


                    }

                }).show();
    }

}

Import the libraries needed. Hope these help you...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.