Questions tagged as 'android'

1
answer

Call handling

I was making an application that makes calls with the following code Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse(“tel:numerodetelefono”)); activity.startActivity(intent); There is some way to know how long...
asked by 18.01.2017 / 21:37
3
answers

Move from one fragment to another

I would like to know how I can move from one fragment to another without having to mount both of them in the container, then my code. Activity where the container is and call the first fragment: public class Home extends AppCompatActivity {...
asked by 11.11.2016 / 18:53
3
answers

java.lang.NullPointerException

I have a small problem that I did not understand, it is that my application is giving me the following error after having programmed the Web Service . here I leave the code: public class Winery { private static final String wineURL =...
asked by 01.11.2016 / 20:52
2
answers

How to change the location icon in the Api Google Maps on Android

How can I change the blue circle icon of the default location in the Google Maps app to an icon made by me in Android? !     
asked by 19.06.2017 / 16:36
2
answers

Problem with app_name texts in different languages

I have the need to find a solution to a problem with the app_name of my android project. The idea is that I should be able to have app_name for both English and Spanish, but only allow me for one. Any way out?     
asked by 13.07.2017 / 09:54
3
answers

Error using Google API to check addresses

I'm using the Google API that suggests street addresses as you type in the address. It works well 99% of the time, but I've run into the following error that I can not control: VIDEO OF THE EXCEPTION: link E/AndroidRuntime: FATAL EXCEPT...
asked by 24.03.2017 / 20:48
2
answers

Connect Android via usb. adb devices various errors (xxxxxxxxxx no permissions) OS UNIX type

Trying to connect an android device I am having errors of the type: command shell: ./adb devices List of devices attached * daemon not running. starting it now on port 5037 * * daemon started successfully * command shell: ./adb devices...
asked by 11.01.2016 / 22:22
1
answer

Repositories.cfg could not be loaded

I'm trying to compile an android application using the following command, ionic build android for Ionic 1.x, but I get the following error: File C:\Users\User\.android\repositories.cfg could not be loaded. The information of my team...
asked by 13.04.2017 / 19:54
3
answers

Android App Security

I am finishing the 1st app that I have developed, which handles sensitive data and any modification or alteration of the data or the handling thereof can cause great damage to the infrastructure of the company. I'm afraid that Apps of the typ...
asked by 14.09.2017 / 18:37
2
answers

Send phrase to web service using JSON

I have a small problem when sending a phrase using JSON to a web service, if I send a string without spaces like String name="Jose" ;, there is no problem, but when trying to send a whole sentence, the consultation is not done. What would be the...
asked by 09.12.2018 / 22:48