I'm making an Android application that uses time and date selectors (DatePicker and TimePicker), which are displayed in the form of fragments. When the user sets the desired time, I need it to be passed from the selector fragment to the main win...
I need to develop a RESTFull HTTP API in PHP to serve as authentication for users of an Android application, the problem is that since it is a public distribution application I can not define any key in the code as for example: basic authenticat...
The insert of Android returns a row ID according to the documentation,
the row ID of the newly inserted row, or -1 if an error occurred
The row ID corresponds to the primary key, ID , if it exists?
I have already found several examples by Google, but none that explain how a java cryptography works with AES ... How does it work?
In an example of the net, the guy cites that he has to use a key, but does not explain why or what it is for;...
Hello, I have a Bytes Array which is a image from it, how can I save it in external memory and if there is no save in the internal memory of android? and then how can I be recovering that image?
I need to save in a place that these im...
To pass data between activity , I have 2 forms:
1. Use Bundle :
public void teste(View v) {
Intent i = new Intent(this,Teste.class);
Bundle bd = new Bundle();
bd.putString("site","google.com");...
I've been noticing that every time I "plug in" the headset into my smarphone, a Deezer notification (music stream application) appears. ) already telling you to click and to open the application.
According to the documentation that talks abo...
I have a url that gives me the data in this format:
{"to": "DKK", "rate": 7.4417, "from": "EUR"}
I'm trying to read them as follows:
JSONObject obj = new JSONObject();
JSONObject obj2 = obj.getJSONObject(site);
String to = (String)obj2....