German Wie wird das in B4A umgesetzt?

Wolli013

Well-Known Member
Licensed User
Longtime User
Welcher Profi kann mir helfen und sagen wie man es in B4A umsetzt, so das es funktioniert?

B4X:
String latLng = cafe.getLocation().latitude + "," + cafe.getLocation().longitude;
Uri uri = Uri.parse(Constants.MAPS_NAVIGATION_INTENT_URI + Uri.encode(latLng));
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
mContext.startActivity(intent);
 
Top