Posts by Gabriel • 145 points
6 posts
-
2
votes1
answer805
viewsA: Android Studio Screen - Block Completely Touch
You can create a thread for insertion while rotating a dialog wait. Then you return to Handler and closes the dialog. To disable the suspension of dialog use the command…
-
2
votes2
answers68
viewsA: App that every day of the week shows an Activity
Instead of changing Activity each day, try to create a layout from which you can exchange your content as needed. You could specify more what type of content you want to put in this Activity. The…
-
4
votes2
answers1398
viewsQ: Java to Kotlin conversion
One of the qualities cited about the Kotlin language is the creation of clean code, that is, code that is pleasant to read and that can accomplish its goal without curling. From what I saw, Android…
-
0
votes1
answer80
viewsA: Converting Inputstream to Image
Finished. It was problem in webservice, "Content-Type" was different than expected. Thanks for the help.
-
0
votes1
answer80
viewsQ: Converting Inputstream to Image
I need to download an image and record it on the device. I download it and record in one InputSstream InputStream imagem = comunicacao.getWSStream(servico, nome); But when it comes to converting it,…
-
1
votes1
answer85
viewsA: Imageview of another Activity
I’m not sure what you want to do. If you intend to select an image in a Activity to appear in another, you can popular a Bundle to the second Activity with the selected option. So, according to the…