You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue seems to popup from time to time i believe its when you initially choose what drive to use anyone else have this issue or perhaps even a fix?
This issue seems to popup from time to time i believe its when you initially choose what drive to use anyone else have this issue or perhaps even a fix?
Fatal Exception: java.lang.IndexOutOfBoundsException
Index: 9, Size: 0
java.util.ArrayList.get (ArrayList.java:437)
com.codekidlabs.storagechooser.fragments.SecondaryChooserFragment$5$1.run (SecondaryChooserFragment.java:155)
android.os.Handler.handleCallback (Handler.java:873)
android.os.Handler.dispatchMessage (Handler.java:99)
android.os.Looper.loop (Looper.java:216)
android.app.ActivityThread.main (ActivityThread.java:7266)
java.lang.reflect.Method.invoke (Method.java)
com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run (RuntimeInit.java:494)
com.android.internal.os.ZygoteInit.main (ZygoteInit.java:975)
private AdapterView.OnItemClickListener mSingleModeClickListener = new AdapterView.OnItemClickListener() {
@OverRide
public void onItemClick(AdapterView<?> adapterView, View view, final int i, long l) {
mHandler.postDelayed(new Runnable() {
@OverRide
public void run() {
LINE 155 : String jointPath = theSelectedPath + "/" + customStoragesList.get(i);
if (FileUtil.isDir(jointPath)) {
populateList("/" + customStoragesList.get(i));
} else {
StorageChooser.onSelectListener.onSelect(jointPath);
dissmissDialog(FLAG_DISSMISS_NORMAL);
}
}
}, 300);
}
};
The text was updated successfully, but these errors were encountered: