public void onDateSet(DatePicker view, int year, int month,int day){
String date = day+"/"+(month+1)+"/"+year;
Activity1 act1 = new Activity1();
act1.MostrarDatos(date);
}
As you can see I want to run a method of the first activi...
asked on
20.12.2016 / 23:37