Posts by Wender Galan • 76 points
7 posts
-
0
votes1
answer54
viewsA: Trial version and production version Android
Edit the testers and remove them, because they are as testers they will only receive the Alpha version where they were added and consequently will not be able to receive the production version…
-
0
votes1
answer112
viewsA: Update Android App
You could create a service to check this and warn the user, but I have a better option, usually android devices have to activate automatic update check, that way when you drop a new version in the…
-
0
votes2
answers3586
viewsA: Why does the 'preview' of the layouts no longer appear after upgrading to Android Studio 3.0?
Look at me is happening this way I found to get around this situation was by clicking on Apptheme and selecting the following option: After selecting this option go to Build and then Clean Project,…
-
1
votes1
answer99
viewsA: Counter zeroing for no reason
Error: When you finish executing the send method you open a new App and inside your Oncreate method you instantiate again the Register class (new Register()) with this the counter is created again…
-
0
votes1
answer47
viewsA: Force android app close and restart
As I recall there is no way to do this, but you can finish the Activity you are and start again, basically this FLAG clears the stacked activities and starts the one you want. I advise to have a…
androidanswered Wender Galan 76 -
1
votes2
answers195
viewsA: Optimize Firebase Realtime Database and Firebase Storage actions
So unfortunately when we have to utilize data coming from the web there is no way to maintain a fluidity within the application if the user’s internet is not fast, but when working with firebase we…
-
1
votes1
answer214
viewsA: Error opening a new Activity on mobile - Android Studio
From what I noticed you are trying to open an Activity with a "setContentView" inside the Onclick method, to open an Activity you must: Your mistake: public class Mainactivity extends…