Questions tagged as 'android'

3
answers

Effect Blur on image [closed]

I need to do a Blur effect on a background image. How can I do this?     
asked by 09.09.2016 / 19:09
2
answers

How to change the Text Color of a listView?

I'm trying to change the TEXT color of this listView I made following some examples on the internet, but the most I got was the comment from the line 39 txt.setTextColor (Color.GREEN); The problem is that this only changes the color when cl...
asked by 22.07.2014 / 22:59
3
answers

ListView with different layouts by lines, according to filtered value

I have a single table in the DB, which contains records with fields like: tipo, data, hora, cliente, historico According to the value of tipo , the cliente field is mandatory, ie vazio . To create a ListView...
asked by 30.01.2018 / 11:43
1
answer

Async Task and / or Application

I'm developing a app that needs to be always connected to the server. For this I thought to use a async task to run the connection to the server in the background but when I change from Activity the connection ends. I've...
asked by 26.03.2014 / 13:24
2
answers

How to create a configuration screen in an Android app that appears only when the user is registered?

I'm developing an android with Firebase authentication, I need place a screen where the user will define a "nickname", but it must be immutable. Therefore, this screen must appear soon after the registration and only this time, when accessing...
asked by 02.08.2017 / 15:40
2
answers

When I use this permission an error occurs in ALL. What do I do? [closed]

When I use this permission, an error occurs in TODO. What do I do? if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this,...
asked by 12.12.2016 / 04:46
2
answers

Doubts in web service

Personally I found the following webservice tutorial: link Looking at the tutorial I was a bit confused about it. 1- Should the web service be part of the Android application? For example I create a web service I put this web service...
asked by 19.05.2016 / 18:46
2
answers

Error while trying to display a vector imageView (SVG)!

Good luck, in this app I intend to test by inserting a vector image into the main activity. I made the entire integration process, as you can see: ButeventhoughIhavefollowedthewholetutorial,thefollowingerrorappears,soIcannotevenruntheapp...
asked by 05.02.2017 / 00:51
1
answer

Error: Execution failed for task ': app: transformClassesWithDexForRelease' from Lcom / google / android / gms / internal / zzbw; Would anyone know this error?

In my Android Studio is giving the following error when trying to make an apk to store:    Error: Execution failed for task   ': app: transformClassesWithDexForDebug'.       com.android.build.api.transform.TransformException:   com.android.i...
asked by 11.10.2016 / 13:56
2
answers

How to put a button that performs an AlertDialog.Builder action?

I have this method where you display a message. public void mensagenExebir(String titulo, String texto){ AlertDialog.Builder mensagem = new AlertDialog.Builder(Activity.this); mensagem.setTitle(titulo); mensagem.set...
asked by 22.01.2016 / 00:44