Posts by Marabita • 714 points
8 posts
-
5
votes1
answer2122
viewsA: Save, in the photo, the coordinates of the place where it was taken
Regarding data storage in the image: Take a look at these links might help: geo-tagging-in-android taking-picture-and-geotag-it Geotagging-photos-after-using-camera-Intent There is a class:…
-
3
votes1
answer923
viewsA: Click and hold on Listview
Make your class implement the event to long click implements OnItemLongClickListener And use the method onItemLongClick as below: @Override public boolean onItemLongClick(AdapterView<?>…
-
3
votes3
answers489
viewsA: Http Connection with timeout does not work
Hello Gabriel Good afternoon, I got your code put in here to run and I really couldn’t get it to work. I started looking in some places and found a code I used in some projects to make the GET…
-
13
votes2
answers4470
viewsA: Convert date dd/mm/yyyy to yyyy-mm-dd’T'HH:mm:ss
Douglas, I’ve had a similar problem when converting dates, see if the example below helps to direct your problem. try { Log.e(MainActivity.class.getSimpleName(), converteStringEmData("21/03/2014"));…
-
6
votes2
answers1998
viewsA: How do I set the location of the working directory in Git?
Hello, I was able to change the git bash initial path by changing the 'start in' parameter in the properties, here it worked, I think the problem you are having is because of the space character.…
-
6
votes1
answer1808
viewsA: Run another application as soon as you receive an SMS
Using a BroadcastReceiver it is possible to intercept the messages that are arriving on the device. First you will need the following permission in your AndroidManifest.xml, in this case I put to…
-
3
votes1
answer136
viewsA: Maps Public API KEY
Check that the key-api Voce is using is the correct version and that it is the release version and not the debug version. take a look at this tutorial:…
-
13
votes4
answers6835
viewsA: Why should I only use a "Return" in each function?
quick response would be in relation to Maintainability of code, the fact that there is only one Return helps to easily map the flow within the method or function