Posts by Antonio Braga D Neto • 19 points
2 posts
-
0
votes1
answer197
viewsA: How to make columns responsive with Gridlayoutmanager?
Use the getRotation(): WindowManager manager = (WindowManager) getSystemService(Context.WINDOW_SERVICE); if (manager != null) { Display display = manager.getDefaultDisplay(); int rotation =…
-
1
votes1
answer46
viewsA: Capturing plaintext information and storing in variable
When you say PlainText did you mean a text field? Follow an example using the Edittext: int i = Integer.valueOf(editText.getText().toString());…
androidanswered Antonio Braga D Neto 19