• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. A

    Firebase authentication succeeds and yet doesn't work

    Hello, I've ran into this problem today and it drives me nuts, any help would be appreciated. I'm using Firebase authentication with email and password, the user is created and appears in the Firebase console, but FirebaseAuth.getCurrentUser() as well as task.getResult().getUser() returns some...
  2. A

    Checking if other activities are launched\running

    Hi everyone, I've been searching for a way to monitor over other apps, specifically check if certain apps have been launched\are running. From what I could find, ActivityManager seemed like that way to go, using getRunningTasks() or getRunningAppProcess(), but it seems any relevant function has...
  3. A

    Using Dao to retreive values in real time

    Hi, I'm trying to implement RoomDatabase in my Calendar project, from the ground up (meaning, I didn't have any SQLite foundation) and I don't understand how to approach some issue. What I'm trying to do is have the user pick a data in a calendar, which opens a fragment of the events he has...
  4. A

    Pusing notificaitons after app is killed

    Hi guys. I've been trying to make notifications for my calendar-planner project and I'm stuck for the past couple of days on an issue with no progress. Thus far I have a notification publisher that works fine as long as the app is isn't removed from the recent tasks. Otherwise, the notifications...
  5. A

    RecyclerView doesn't update when wraps content

    Hi guys, quick question. I've just finished implementing RecyclerView on my project after an awful struggle - despite updating the Adapter dataset, the view won't update. I've tried doing it in multiple ways - deleting all existing elements and adding the entire list, creating a new ArrayList...
  6. A

    Switching to ListView and Adapter from manually created ones

    Hi guys, android newbie here. I've recently started building a simple calendar-dayplanner project, strictly for deepening my knowledge in android and as a bit of a practice. Up until now my app can display a dayview where you can access and create new events, and an event-creator where you can...