I have customized a dialog, but since the AlertDialog.Builder does not have dismiss () I removed the builder and now it does not accept the create call due to a vesrion error.
public AlertDialog DespachoAct() {
final AlertDialog buil...
Good, first I want to make a brief summary to put in situation.
My app loads a Fragment , I instantiate an object from a clase that I created. This clase contains the attributes and methods necessary to play a radio in Stream...
In an Android application, I have to connect to a web using basic authentication and https.
HttpsURLconexion = (HttpsURLConnection) new URL(url).openConnection();
conexion.setSSLSocketFactory((SSLSocketFactory) SSLSocketFactory...
I have a record in Android but when I hit the "Register Incidence" button, it generates the following error in the logcat:
This is my RegisterIncidences:
btnRegistrar.setOnClickListener(new View.OnClickListener() {
@Ov...
I have this structure in Firebase
And I'm calling the last three data with the name "dose" with this structure
my.child("usuario").orderByKey().limitToLast(3).addValueEventListener(new ValueEventListener() {
@Override...
I have a layout that contains a gridview and another in which it contains a textview and a imageview , in one it captures images and another text, by clicking on the image what I want the text to travel to another layout....
I need to export a database to a .txt file delimited by commas, I have researched but I can not find the way, I need the files to be shown in this way:
Data, Data, Data
Data, Data, Data
How can I do it?
I'm looking through Android programming to know when a call is rejected or when a call is sent to voicemail.
I am also looking for how I can know when the call is connected to the telephone service provider
I need to know how to pass a variable String from a popup (it's an activity class) that was called from another activity, the idea when I click on a button to accept it in the popup returns me to the activity class without restarting it, if not...