Posts by Leonardo Turbiani • 121 points
6 posts
-
1
votes2
answers467
viewsA: Nav Header with login
It’s Arthur, all right ? Dude, there’s a really good book by Professor Nelson Glauber, the first Google Developer Expert in Latin America. And there is a chapter that he treats just what he needs, a…
-
1
votes1
answer73
viewsA: Insert API KEY from aws (Amazon)
Henrique, okay? Dude, AWS doesn’t recommend working with API_KEY and API_SECRET_KEY within the application. They use something called Identity Provider. What does this mean? It is that you can use…
-
1
votes2
answers724
viewsA: How to change the color of a Listview item while it is being pressed?
Daniel, all right ? The following is a link from the official Google documentation regarding this feature. It explains well what each attribute does and gives an example at the end. Follow some…
-
1
votes3
answers1170
viewsA: Exchange Fragments Android
I do as follows: First I will instantiate a Switch for the menu items clicked. @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //OUTRAS…
-
1
votes1
answer569
viewsA: Call to a Rest Webservice with a Post Request
Miguel, to send the data you must use OutputStream. So try using the following: Change: InputStream is = request.getInputStream(); String resp = convertStreamToString(is); byte[] data =…
-
1
votes2
answers190
viewsA: How could I get an image inside a <Scroolview to stay fixed and all the content "scroll" through the "bottom" of the image?
I managed to turn the main layout into LinearLayout, and putting the static elements right at the beginning. Right below I put the ScrollView with the sole element scrolable that was the synopsis:…