There was an error while loading. Please reload this page.
2 parents dc9ea1f + 5a74f7e commit 6471c73Copy full SHA for 6471c73
.gitignore
@@ -10,3 +10,4 @@
10
11
.idea/*
12
.idea
13
+/app/release/
app/src/main/java/com/codedead/deadhash/gui/MainActivity.java
@@ -157,6 +157,9 @@ protected void onCreate(final Bundle savedInstanceState) {
157
if (cursor != null && cursor.moveToFirst()) {
158
@SuppressLint("Range") String displayName = cursor.getString(cursor.getColumnIndex(OpenableColumns.DISPLAY_NAME));
159
edtFilePath.setText(displayName);
160
+
161
+ fileDataArrayList.clear();
162
+ mAdapterFile.notifyDataSetChanged();
163
}
164
165
} else {
0 commit comments