VaradGupta23
VaradGupta23
Hi @yaosming 👋 Thanks for reporting this! It sounds like the issue might be caused by overlapping navigation and drawer state transitions — clicking the return button quickly followed by...
You're right to question that navigation behavior — it is not ideal UX to allow returning to the AddTaskFragment after saving a task, especially if doing so allows resaving and...
Right — in the todo-mvp architecture, the TasksRepository currently plays two roles: Repository – coordinating between local (DB) and remote data sources. In-memory cache – storing the already-fetched Task objects...
To resolve the “Wayland cursor shape does not change” issue in RustDesk when remoting into a Debian KDE Wayland session: ✅ Solutions: 1. Switch to X11 Session (Recommended Workaround) Wayland...
Suggested Response: Great question — and you're absolutely right to wonder about this. Why is mPresenter.takeView(this) called in onResume() and not onCreate()? The reason has to do with lifecycle awareness...
What’s going on In TasksRepository, there’s a method: @Nullable private Task getTaskWithId(@NonNull String id) { checkNotNull(id); if (mCachedTasks == null || mCachedTasks.isEmpty()) { return null; } else { return mCachedTasks.get(id);...
Hi @yssssyy Thanks for bringing this to our attention and for sharing the detailed explanation and reproduction steps — this is a well-known class of task hijacking attacks that can...
Yes, you're absolutely right to question the approach used in the AddEditTaskActivity from the [android-architecture](https://github.com/googlesamples/android-architecture) sample, especially with regard to presenter-linking in Fragments. Let’s break it down: What the sample...
Issue Summary Problem: Scroll position of the RecyclerView in TasksFragment resets to the top on configuration changes (e.g., device rotation). Cause: Likely because TasksFragment.updateView() is called after the layout pass,...
This error occurs because Gradle is in Offline Mode and cannot find required dependencies (fastutil.jar, commons-compress.jar) in the local cache. Problem: Could not download fastutil.jar ... No cached version available...