Posts by Rodrigo Henriques • 191 points
4 posts
-
1
votes2
answers312
viewsA: Programming for Android with multiple screens
Hello, You need to be careful with screen sizes from the beginning of development, because retroacting in this direction is even more laborious. The correct way to handle this is by using multiple…
-
0
votes2
answers205
viewsA: How to display the result of an operation in Android?
You should use a Textwatcher for this. Below is a detailed example: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"…
androidanswered Rodrigo Henriques 191 -
2
votes1
answer69
viewsA: Android server
Libraries like Okhttp go up local servers on Android that are used for unit testing. Since it is open source, you can take a look at the source code to see how it does it. I hope I help you.
-
3
votes1
answer479
viewsA: Problems trying to open the Navigationdrawer with the Home Button on the Toolbar
Try using the Navigationview component of the new Material Design support library. It’s simpler and will solve your problem. Follow this example: https://github.com/chrisbanes/cheesesquare Hug.…