
I downloaded the zipped version of the source, but I have the following issues (with Manifest.xml)
Line 5: Tag <activity> missing required attribute name.
Line 5: Class org.anddev.android.filebrowser.Filebrowser does not exist (if I add an arbitrary android:name field, I get this instead)
<activity android:name="Filebrowser" class=".AndroidFileBrowser" android:label="@string/app_name">
(this line is SOLVED: solution is below)
Line 11: Class org.anddev.android.filebrowser.Filebrowser does not exist
<activity android:name="Filebrowser" class=".DirNameInputActivity" android:label="@string/dirname_app_name">
(this line is SOLVED: solution is below)
I had to add the android:name field to about 4-5 other lines as well, which seems weird... am I missing something?
I also have issues with AndroidFileBrowser.java, I narrowed down all but two of them:
this line: Intent myIntent = new Intent(android.content.Intent.VIEW_ACTION, Uri.parse("file://" + aFile.getAbsolutePath()));
gives me this error: android.content.Intent.VIEW_ACTION cannot be resolved
(this line is SOLVED: solution is below)
this line: int selectionRowID = (int) this.getSelectionRowID();
gives me this error: The method getSelectionRowID() is undefined for the type AndroidFileBrowser
(this line is NOT SOLVED: please help!)
edit: solution to VIEW_ACTION appears to be to use ACTION_VIEW instead! This gives an error in the catch block, with the exception being different. I changed it to a generic exception until I can figure out exactly what it is throwing.
edit #2: solution to Line 5 of the xml was:
<activity android:name="AndroidFileBrowser" class=".Android_File_Browser" android:label="@string/app_name">
edit #3: solution to Line 11 of the xml:
<activity android:name="DirNameInputActivity" class=".DirNameInputActivity" android:label="@string/dirname_app_name">


, but we modified navigation through buttons at the top of the screen, and the "back" key that works whenever a folder had been selected from the list.
: You can
,
. Through intent extras, the new activity title and button text can actually be set to anything the calling application likes.
:

