Posts by Amadiu • 323 points
7 posts
-
1
votes1
answer158
viewsQ: Error: "Psi and index do not match" Android Studio
Sometimes when cloning a new branch project or download a new code it builda successfully but does not recognize most of the functions of the android itself in the app. In the log error appears "Psi…
-
1
votes1
answer158
viewsA: Error: "Psi and index do not match" Android Studio
This error has happened more than once with me and the solution that best applied was to clean the cache and restart Android Studio. File > Invalidate caches and Restart WARNING: This will clear…
-
2
votes0
answers200
viewsQ: How to change the color of the notification icon?
I have an app with push notification. But the icon I assign to the notification gets the full gray color. I want to know how to have colored icons in the push notification, like these examples: The…
-
2
votes2
answers925
viewsA: I did wrong thing in my code in android studio and I can’t go back to what I was before
If you don’t have a history through Local History you won’t be able to recover. I recommend you start using some code versioning tool to keep a history of your work and can recover what is done. One…
-
9
votes2
answers1320
viewsA: What are the differences between Kanban and Scrum?
Scrum is an agile development method that relies on characteristic components such as: the division of development time into sprints where the stresses are made in gradual and independent ways from…
-
1
votes1
answer52
viewsA: An Activity for each action or several actions in the same Activity?
The ideal is to have an Activity for each of your screens. You can see more about how activitys work on documentation. Do not forget to declare activitys on AndroidManifest.xml…
-
2
votes1
answer72
viewsQ: I need to create an Intent inside another Intent
Created a Widget APP with 3 buttons. In this code snippet assigns button functions: for (int i = 0; i < N; i++) { int appWidgetId = appWidgetIds[i]; RemoteViews views = new…