use of com.amaze.filemanager.utils.MainActivityHelper in project AmazeFileManager by TeamAmaze.
the class MainActivity method onCreate.
/**
* Called when the activity is first created.
*/
@Override
public void onCreate(final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
initialisePreferences();
initializeInteractiveShell();
dataUtils.registerOnDataChangedListener(this);
CustomSshJConfig.init();
AppConfig.setActivityContext(con);
setContentView(R.layout.main_toolbar);
appbar = new AppBar(this, getPrefs(), queue -> {
if (!queue.isEmpty()) {
mainActivityHelper.search(getPrefs(), queue);
}
});
initialiseViews();
tabHandler = new TabHandler(this);
utilsHandler = AppConfig.getInstance().getUtilsHandler();
cloudHandler = new CloudHandler(this);
mainActivityHelper = new MainActivityHelper(this);
// TODO: 7/12/2017 not init when actionIntent != null
initialiseFab();
if (CloudSheetFragment.isCloudProviderAvailable(this)) {
getSupportLoaderManager().initLoader(REQUEST_CODE_CLOUD_LIST_KEYS, null, this);
}
path = getIntent().getStringExtra("path");
openProcesses = getIntent().getBooleanExtra(KEY_INTENT_PROCESS_VIEWER, false);
intent = getIntent();
if (intent.getStringArrayListExtra(TAG_INTENT_FILTER_FAILED_OPS) != null) {
ArrayList<HybridFileParcelable> failedOps = intent.getParcelableArrayListExtra(TAG_INTENT_FILTER_FAILED_OPS);
if (failedOps != null) {
mainActivityHelper.showFailedOperationDialog(failedOps, this);
}
}
checkForExternalIntent(intent);
if (savedInstanceState != null) {
drawer.setSomethingSelected(savedInstanceState.getBoolean(KEY_DRAWER_SELECTED));
}
// setting window background color instead of each item, in order to reduce pixel overdraw
if (getAppTheme().equals(AppTheme.LIGHT)) {
/*if(Main.IS_LIST)
getWindow().setBackgroundDrawableResource(android.R.color.white);
else
getWindow().setBackgroundDrawableResource(R.color.grid_background_light);
*/
getWindow().setBackgroundDrawableResource(android.R.color.white);
} else if (getAppTheme().equals(AppTheme.BLACK)) {
getWindow().setBackgroundDrawableResource(android.R.color.black);
} else {
getWindow().setBackgroundDrawableResource(R.color.holo_dark_background);
}
/*findViewById(R.id.drawer_buttton).setOnClickListener(new ImageView.OnClickListener() {
@Override
public void onClick(View view) {
if (mDrawerLayout.isOpen(mDrawerLinear)) {
mDrawerLayout.close(mDrawerLinear);
} else mDrawerLayout.openDrawer(mDrawerLinear);
}
});*/
drawer.setDrawerIndicatorEnabled();
// recents header color implementation
if (SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
ActivityManager.TaskDescription taskDescription = new ActivityManager.TaskDescription("Amaze", ((BitmapDrawable) getResources().getDrawable(R.mipmap.ic_launcher)).getBitmap(), getColorPreference().getColor(ColorUsage.getPrimary(MainActivity.currentTab)));
setTaskDescription(taskDescription);
}
if (!getBoolean(PREFERENCE_BOOKMARKS_ADDED)) {
utilsHandler.addCommonBookmarks();
getPrefs().edit().putBoolean(PREFERENCE_BOOKMARKS_ADDED, true).commit();
}
AppConfig.runInBackground(new AppConfig.CustomAsyncCallbacks() {
@Override
public <E> E doInBackground() {
dataUtils.setHiddenFiles(utilsHandler.getHiddenFilesConcurrentRadixTree());
dataUtils.setHistory(utilsHandler.getHistoryLinkedList());
dataUtils.setGridfiles(utilsHandler.getGridViewList());
dataUtils.setListfiles(utilsHandler.getListViewList());
dataUtils.setBooks(utilsHandler.getBookmarksList());
ArrayList<String[]> servers = new ArrayList<String[]>();
servers.addAll(utilsHandler.getSmbList());
servers.addAll(utilsHandler.getSftpList());
dataUtils.setServers(servers);
return null;
}
@Override
public Void onPostExecute(Object result) {
drawer.refreshDrawer();
if (savedInstanceState == null) {
if (openProcesses) {
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.content_frame, new ProcessViewerFragment(), KEY_INTENT_PROCESS_VIEWER);
// transaction.addToBackStack(null);
drawer.setSomethingSelected(true);
openProcesses = false;
// title.setText(utils.getString(con, R.string.process_viewer));
// Commit the transaction
transaction.commit();
supportInvalidateOptionsMenu();
} else if (intent.getAction() != null && intent.getAction().equals(TileService.ACTION_QS_TILE_PREFERENCES)) {
// tile preferences, open ftp fragment
FragmentTransaction transaction2 = getSupportFragmentManager().beginTransaction();
transaction2.replace(R.id.content_frame, new FTPServerFragment());
appBarLayout.animate().translationY(0).setInterpolator(new DecelerateInterpolator(2)).start();
drawer.setSomethingSelected(true);
drawer.deselectEverything();
transaction2.commit();
} else {
if (path != null && path.length() > 0) {
HybridFile file = new HybridFile(OpenMode.UNKNOWN, path);
file.generateMode(MainActivity.this);
if (file.isDirectory(MainActivity.this))
goToMain(path);
else {
goToMain(null);
FileUtils.openFile(new File(path), MainActivity.this, getPrefs());
}
} else {
goToMain(null);
}
}
} else {
pasteHelper = savedInstanceState.getParcelable(PASTEHELPER_BUNDLE);
oppathe = savedInstanceState.getString(KEY_OPERATION_PATH);
oppathe1 = savedInstanceState.getString(KEY_OPERATED_ON_PATH);
oparrayList = savedInstanceState.getParcelableArrayList(KEY_OPERATIONS_PATH_LIST);
operation = savedInstanceState.getInt(KEY_OPERATION);
// mainFragment = (Main) savedInstanceState.getParcelable("main_fragment");
}
return null;
}
@Override
public Void onPreExecute() {
return null;
}
@Override
public Void publishResult(Object... result) {
return null;
}
@Override
public <T> T[] params() {
return null;
}
});
}
use of com.amaze.filemanager.utils.MainActivityHelper in project AmazeFileManager by TeamAmaze.
the class BottomBar method updatePath.
public void updatePath(@NonNull final String news, boolean results, String query, OpenMode openmode, int folderCount, int fileCount, BottomBarButtonPath buttonPathInterface) {
if (news.length() == 0)
return;
MainActivityHelper mainActivityHelper = mainActivity.mainActivityHelper;
switch(openmode) {
case SFTP:
newPath = mainActivityHelper.parseSftpPath(news);
break;
case SMB:
newPath = mainActivityHelper.parseSmbPath(news);
break;
case OTG:
newPath = mainActivityHelper.parseOTGPath(news);
break;
case CUSTOM:
newPath = mainActivityHelper.getIntegralNames(news);
break;
case DROPBOX:
case BOX:
case ONEDRIVE:
case GDRIVE:
newPath = mainActivityHelper.parseCloudPath(openmode, news);
break;
default:
newPath = news;
}
if (!results) {
pathText.setText(mainActivity.getString(R.string.folderfilecount, folderCount, fileCount));
} else {
fullPathText.setText(mainActivity.getString(R.string.searchresults, query));
pathText.setText("");
return;
}
final String oldPath = fullPathText.getText().toString();
if (oldPath.equals(newPath))
return;
if (!areButtonsShowing()) {
final Animation slideIn = AnimationUtils.loadAnimation(mainActivity, R.anim.slide_in);
Animation slideOut = AnimationUtils.loadAnimation(mainActivity, R.anim.slide_out);
if (newPath.length() > oldPath.length() && newPath.contains(oldPath) && oldPath.length() != 0) {
// navigate forward
fullPathAnim.setAnimation(slideIn);
fullPathAnim.animate().setListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
super.onAnimationEnd(animation);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
fullPathAnim.setVisibility(View.GONE);
fullPathText.setText(newPath);
}
}, PATH_ANIM_END_DELAY);
}
@Override
public void onAnimationStart(Animator animation) {
super.onAnimationStart(animation);
fullPathAnim.setVisibility(View.VISIBLE);
fullPathAnim.setText(Utils.differenceStrings(oldPath, newPath));
// fullPathText.setText(oldPath);
scroll.post(new Runnable() {
@Override
public void run() {
pathScroll.fullScroll(View.FOCUS_RIGHT);
}
});
}
@Override
public void onAnimationCancel(Animator animation) {
super.onAnimationCancel(animation);
// onAnimationEnd(animation);
}
}).setStartDelay(PATH_ANIM_START_DELAY).start();
} else if (newPath.length() < oldPath.length() && oldPath.contains(newPath)) {
// navigate backwards
fullPathAnim.setAnimation(slideOut);
fullPathAnim.animate().setListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
super.onAnimationEnd(animation);
fullPathAnim.setVisibility(View.GONE);
fullPathText.setText(newPath);
scroll.post(new Runnable() {
@Override
public void run() {
pathScroll.fullScroll(View.FOCUS_RIGHT);
}
});
}
@Override
public void onAnimationStart(Animator animation) {
super.onAnimationStart(animation);
fullPathAnim.setVisibility(View.VISIBLE);
fullPathAnim.setText(Utils.differenceStrings(newPath, oldPath));
fullPathText.setText(newPath);
scroll.post(new Runnable() {
@Override
public void run() {
pathScroll.fullScroll(View.FOCUS_LEFT);
}
});
}
}).setStartDelay(PATH_ANIM_START_DELAY).start();
} else if (oldPath.isEmpty()) {
// case when app starts
fullPathAnim.setAnimation(slideIn);
fullPathAnim.setText(newPath);
fullPathAnim.animate().setListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationStart(Animator animation) {
super.onAnimationStart(animation);
fullPathAnim.setVisibility(View.VISIBLE);
fullPathText.setText("");
scroll.post(new Runnable() {
@Override
public void run() {
pathScroll.fullScroll(View.FOCUS_RIGHT);
}
});
}
@Override
public void onAnimationEnd(Animator animation) {
super.onAnimationEnd(animation);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
fullPathAnim.setVisibility(View.GONE);
fullPathText.setText(newPath);
}
}, PATH_ANIM_END_DELAY);
}
@Override
public void onAnimationCancel(Animator animation) {
super.onAnimationCancel(animation);
// onAnimationEnd(animation);
}
}).setStartDelay(PATH_ANIM_START_DELAY).start();
} else {
// completely different path
// first slide out of old path followed by slide in of new path
fullPathAnim.setAnimation(slideOut);
fullPathAnim.animate().setListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationStart(Animator animator) {
super.onAnimationStart(animator);
fullPathAnim.setVisibility(View.VISIBLE);
fullPathAnim.setText(oldPath);
fullPathText.setText("");
scroll.post(new Runnable() {
@Override
public void run() {
pathScroll.fullScroll(View.FOCUS_LEFT);
}
});
}
@Override
public void onAnimationEnd(Animator animator) {
super.onAnimationEnd(animator);
// fullPathAnim.setVisibility(View.GONE);
fullPathAnim.setText(newPath);
fullPathText.setText("");
fullPathAnim.setAnimation(slideIn);
fullPathAnim.animate().setListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
super.onAnimationEnd(animation);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
fullPathAnim.setVisibility(View.GONE);
fullPathText.setText(newPath);
}
}, PATH_ANIM_END_DELAY);
}
@Override
public void onAnimationStart(Animator animation) {
super.onAnimationStart(animation);
// we should not be having anything here in path bar
fullPathAnim.setVisibility(View.VISIBLE);
fullPathText.setText("");
scroll.post(new Runnable() {
@Override
public void run() {
pathScroll.fullScroll(View.FOCUS_RIGHT);
}
});
}
}).start();
}
@Override
public void onAnimationCancel(Animator animation) {
super.onAnimationCancel(animation);
// onAnimationEnd(animation);
}
}).setStartDelay(PATH_ANIM_START_DELAY).start();
}
} else {
showButtons(buttonPathInterface);
fullPathText.setText(newPath);
}
}
Aggregations