mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 06:05:42 +03:00
Clear search view
Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
parent
d3f4f33b98
commit
2464ec59d7
1 changed files with 37 additions and 29 deletions
|
@ -46,7 +46,9 @@ import android.net.Uri;
|
|||
import android.os.Build;
|
||||
import android.os.Bundle;
|
||||
import android.os.Environment;
|
||||
import android.os.Handler;
|
||||
import android.os.IBinder;
|
||||
import android.os.Looper;
|
||||
import android.os.Parcelable;
|
||||
import android.text.TextUtils;
|
||||
import android.view.Menu;
|
||||
|
@ -646,6 +648,7 @@ public class FileDisplayActivity extends FileActivity
|
|||
public void showFileActions(OCFile file) {
|
||||
dismissLoadingDialog();
|
||||
OCFileListFragment listOfFiles = getOCFileListFragmentFromFile();
|
||||
clearSearchViewIfSearchAndDrawerNotOpened(listOfFiles);
|
||||
listOfFiles.onOverflowIconClicked(file, null);
|
||||
}
|
||||
|
||||
|
@ -917,7 +920,7 @@ public class FileDisplayActivity extends FileActivity
|
|||
FileUploader.LOCAL_BEHAVIOUR_DELETE);
|
||||
}
|
||||
}
|
||||
}, new String[] { FileOperationsHelper.createImageFile(getActivity()).getAbsolutePath() }).execute();
|
||||
}, new String[]{FileOperationsHelper.createImageFile(getActivity()).getAbsolutePath()}).execute();
|
||||
} else if (requestCode == REQUEST_CODE__MOVE_OR_COPY_FILES && resultCode == RESULT_OK) {
|
||||
exitSelectionMode();
|
||||
} else if (requestCode == PermissionUtil.REQUEST_CODE_MANAGE_ALL_FILES) {
|
||||
|
@ -1035,6 +1038,34 @@ public class FileDisplayActivity extends FileActivity
|
|||
}
|
||||
}
|
||||
|
||||
private void clearSearchView(OCFileListFragment listOfFiles) {
|
||||
searchView.setQuery("", true);
|
||||
searchView.onActionViewCollapsed();
|
||||
searchView.clearFocus();
|
||||
|
||||
// Remove the list to the original state
|
||||
listOfFiles.performSearch("", true);
|
||||
|
||||
hideSearchView(getCurrentDir());
|
||||
|
||||
setDrawerIndicatorEnabled(isDrawerIndicatorAvailable());
|
||||
}
|
||||
|
||||
private void clearSearchViewIfSearchAndDrawerNotOpened(OCFileListFragment listOfFiles) {
|
||||
OCFile currentDir = getCurrentDir();
|
||||
if (currentDir == null || currentDir.getParentId() == FileDataStorageManager.ROOT_PARENT_ID) {
|
||||
finish();
|
||||
return;
|
||||
}
|
||||
listOfFiles.onBrowseUp();
|
||||
setFile(listOfFiles.getCurrentFile());
|
||||
listOfFiles.setFabVisible(true);
|
||||
listOfFiles.registerFabListener();
|
||||
showSortListGroup(true);
|
||||
resetTitleBarAndScrolling();
|
||||
setDrawerAllFiles();
|
||||
}
|
||||
|
||||
/*
|
||||
* BackPressed priority/hierarchy:
|
||||
* 1. close search view if opened
|
||||
|
@ -1050,37 +1081,14 @@ public class FileDisplayActivity extends FileActivity
|
|||
|
||||
final Fragment leftFragment = getLeftFragment();
|
||||
|
||||
if (leftFragment instanceof OCFileListFragment) {
|
||||
OCFileListFragment listOfFiles = (OCFileListFragment) leftFragment;
|
||||
|
||||
if (leftFragment instanceof OCFileListFragment listOfFiles) {
|
||||
if (isSearchOpen && searchView != null) {
|
||||
searchView.setQuery("", true);
|
||||
searchView.onActionViewCollapsed();
|
||||
searchView.clearFocus();
|
||||
|
||||
// Remove the list to the original state
|
||||
listOfFiles.performSearch("", true);
|
||||
|
||||
hideSearchView(getCurrentDir());
|
||||
|
||||
setDrawerIndicatorEnabled(isDrawerIndicatorAvailable());
|
||||
clearSearchView(listOfFiles);
|
||||
} else if (isDrawerOpen) {
|
||||
// close drawer first
|
||||
super.onBackPressed();
|
||||
} else {
|
||||
// all closed
|
||||
OCFile currentDir = getCurrentDir();
|
||||
if (currentDir == null || currentDir.getParentId() == FileDataStorageManager.ROOT_PARENT_ID) {
|
||||
finish();
|
||||
return;
|
||||
}
|
||||
listOfFiles.onBrowseUp();
|
||||
setFile(listOfFiles.getCurrentFile());
|
||||
listOfFiles.setFabVisible(true);
|
||||
listOfFiles.registerFabListener();
|
||||
showSortListGroup(true);
|
||||
resetTitleBarAndScrolling();
|
||||
setDrawerAllFiles();
|
||||
clearSearchViewIfSearchAndDrawerNotOpened(listOfFiles);
|
||||
}
|
||||
} else if (leftFragment instanceof PreviewTextStringFragment) {
|
||||
createMinFragments(null);
|
||||
|
@ -2289,7 +2297,7 @@ public class FileDisplayActivity extends FileActivity
|
|||
* Opens EditImageActivity with given file loaded. If file is not available locally, it will be synced before
|
||||
* opening the image editor.
|
||||
*
|
||||
* @param file {@link OCFile} (image) to be loaded into image editor
|
||||
* @param file {@link OCFile} (image) to be loaded into image editor
|
||||
*/
|
||||
public void startImageEditor(OCFile file) {
|
||||
if (file.isDown()) {
|
||||
|
@ -2298,7 +2306,7 @@ public class FileDisplayActivity extends FileActivity
|
|||
startActivity(editImageIntent);
|
||||
} else {
|
||||
mWaitingToPreview = file;
|
||||
requestForDownload(file,EditImageActivity.OPEN_IMAGE_EDITOR, getPackageName(),
|
||||
requestForDownload(file, EditImageActivity.OPEN_IMAGE_EDITOR, getPackageName(),
|
||||
this.getClass().getSimpleName());
|
||||
updateActionBarTitleAndHomeButton(file);
|
||||
setFile(file);
|
||||
|
|
Loading…
Reference in a new issue