Posts by creonilso rodrigues • 141 points
4 posts
-
2
votes1
answer762
viewsA: Update Textview Android Using Handler
You can use this method to run on the UI thread runOnUiThread(new Runnable(){ @Override public void run() { // TODO Auto-generated method stub textorecebido.setText(text); } }); Or you can use the…
-
1
votes2
answers627
viewsA: Button in Fragment android
void onClick(View v) View v: Represents the view that was clicked, in this case it would be like you were calling: adicionarEventos(floatActionButton); and then you try to take a view in Fab with an…
-
0
votes2
answers748
viewsA: Limit access in app areas to different users
You could add viewing conditions, for example: When logging in the method would return the group in which that user would belong public GrupoDeUsuario autenticar(usuario, senha){ } boolean isAdm =…
-
1
votes1
answer152
viewsA: Webview android 6.0 does not load map with image
From Android 5.0 the permissions are requested on demand, IE, the developer needs to request the permissions at the time it will use. It may be happening this, go to the application settings and…