Donar enlaces: #EatItAndroidEDMTDev #AndroidEDMTDev #EDMTDev Facebook: Fuente de enlace: En este tutorial, mejoraremos la actividad de envío en la aplicación del remitente: – Agregar diseño expandible – Mostrar direcciones al buscar la dirección del remitente – Actualizar la ubicación del remitente tutorial de desarrollo de Android para remitentes en tiempo real, tutorial de programación de Android, tutorial de desarrollo de aplicaciones de Android, tutorial de Android para principiantes, tutorial de aplicaciones de Android, tutorial de Android Studio, aprender programación de Android, tutorial de desarrolladores de Android, programación de Android, desarrollo de Android , Tutorial de Android Studio para principiantes, Curso de Android, Capacitación de Android, Curso de desarrollo de Android, Curso de desarrollo de aplicaciones de Android, Múltiples aplicaciones de restaurante, Estudio de Android para pagos en línea, Base de aplicaciones de restaurante.

I have a question, my firebase ShipperOrder the currentLat and currentLng always is -1.
what's happen?
and when I click ship now, it cannot draw delivery line? why?
but if I search the address, it's can draw it
And I found bug in where
should be fix to
mMap.addMarker(new MarkerOptions(){
…
..
…
.position(new LatLng(shippingOrderModel.getCurrentLat(), shippingOrderModel.getCurrentLng())));
and should be modify this code
String to = new StringBuilder()
.append(shippingOrderModel.getOrderModel().getLat())
.append(",")
.append(shippingOrderModel.getOrderModel().getLng())
.toString();
change to
String to = new StringBuilder()
.append(shippingOrderModel.getCurrentLat())
.append(",")
.append(shippingOrderModel.getCurrentLng())
.toString();
then when I click ship now, it's can auto draw delivery line.
But I don't know whether correct?
just wanted to ask when i have 2 orders to ship … if one trip is started and if i go back and try to ship now the other one … it open the shipping activity of the previous one …. can we add a toast or something where it says "you need to complete the previous order to start new" ??
Where have you implemented the DONE button in Shipper app. If not implemented, how should we implement DONE button after completing the TRIP ?
Sir i am getting this error in app, when the google maps open.
"attempt to invoke interface method 'java.util.iterator java.lang.iterable.iterator() on a null object reference"
Nothing in logcat.
sir, how show distance and duration in shippers activity ?
Attempt to invoke virtual method … On a null object reference help me
sir is there a way to make the camera follow the bike faster because it drives off screen and you have to pan to it again
Mr eddy are you going to upload Uber V2 after EatItV2? Or what comes after EatItV2?
Hello edmt…Great tutorial once again!! ..please how many parts left in this serie so you can continue with MyRestaurant App Project? We are waiting!
Hi bro. When i add something to the cart and place the order, it still shows the number of cart items i had before. It only clears when i exit the app. Please tell me detailed explaination on how to fix this
Add a voucher code feature just like your previous SQL backend project.
sir my search map is not working properly everything is ok any suggestion ????