public void onFolderShow(View v) {
try {
Entry entries = mDBApi.metadata("/", 100, null, true, null);
} catch (DropboxException e) {
(Toast.makeText(this, "Exception: "+e.getLocalizedMessage(), Toast.LENGTH_LONG)).show();
}
}
I can't understand why the "entries" variable keeps returning "null". The desired result is showing the list of the files contained inside my root folder. Any thoughts?