Posts by Neto Marin • 332 points
9 posts
-
2
votes1
answer235
viewsA: Alarm with malfunction
I imagine you have already read the official documentation, but anyway I will leave the link of a guide as reference: Scheduling Repeating Alarms Therefore, the first observation I make, instead of…
androidanswered Neto Marin 332 -
2
votes1
answer4140
viewsA: Return an address using Google Maps API
You will have to use a Geolocation Reverse. I did a post about it in 2010 (Android: Reverse Geolocation), but the code for that part hasn’t changed much. The class containing the data the address is…
-
3
votes2
answers813
viewsA: Creating a double array (not a multidimensional array)
When you create an Asynctask, the first parameter indicates which type of argument the InBackground method will receive as an array of arguments, using the Java varargs notation, so the reticence…
-
1
votes1
answer618
viewsA: How to Capture Usage Time of Apps Installed on Android
There is no official way to do this, through the Android SDK. There is an answer, in English, to a similar question: How to Track App Usage in Android? How to Detect when an Activity is launched?…
-
3
votes3
answers360
viewsA: Alarms are lost when mobile is turned off and on!
Make a receiver for the ACTION_BOOT_COMPLETED action, and then you can reconfigure any action you want when the device is turned off/on.
-
0
votes2
answers184
viewsA: Versions of Constants according to Buildtype
You will need to create different files for each set of constant values you want to use. And then, create tasks that will select the file at the right time. This is done by setting up…
-
1
votes3
answers878
viewsA: Unsuccessfully installing an app on a Genesis GT-7240 tablet
The Google Maps API is not native to the Android OS, that is, it is not part of the core of Android and may not be available on this tablet. This occurs mainly in models that are not approved by OHA…
-
1
votes2
answers1179
viewsA: How to move an icon on the map behind my location?
Only with this excerpt is very complicated to say what is happening, it would take all the code of the class that takes care of the upgrade of your Marketer. But from what you have said, to be…
-
4
votes2
answers694
viewsA: Running on Multiple Screens
The Android Resources system will choose the most suitable layout for the device screen according to the layout-small directories, layout-normal, layout-large and layout-xlarge. In addition, you can…