I just want to open this url by clicking textview
txtDeliveryAddress.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?saddr=" + restroAdres_Lat + "," + restroAdres_Long + "&daddr=" + deliveryAdres_Lat + "," + deliveryAdres_Long));
startActivity(intent);
}
});
3 People are following this question.