Posts by Cleibson • 136 points
6 posts
-
3
votes1
answer155
viewsA: How to compile Java with icons
Your images must be in an exe font package folder.: src/images/img.png Following step 1, when generating the app . jar you will not need external folder; Follows code: URL imageURL =…
-
2
votes2
answers1179
viewsA: How to move an icon on the map behind my location?
Dude, I change the position of the icon like this, this method is very simple and you can make several cool modifications. Just and pass the Latlng to him that the same does the magic. I hope it…
-
1
votes1
answer3317
viewsA: Create folder in your device’s internal memory and display message after saving
Try like this, here it works in all API. private File getDirFromSDCard() { if (Environment.getExternalStorageState().equals( Environment.MEDIA_MOUNTED)) { File sdcard =…
-
1
votes1
answer179
viewsA: Sending of Android SMS
Guy, Tries to partition the shipment by splitting in steps. Ex.: sends 50, waits 5 seconds send 50 more until finish sending all. I have an app that sends a text every 1 minute after activated and I…
-
1
votes1
answer495
viewsA: Resize table layout according to screen orientation
I think to do this, you will need a much more complex configuration, try putting this in your Edittext android:layout_weight="1".
android-layoutanswered Cleibson 136 -
1
votes1
answer9073
viewsA: Send and receive image via Webservice
The code presented this right, the only difference to what I used a few times was that instead of 100 I used 50 ( bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream); ), why it did not require…