Einzelnen Beitrag anzeigen

DaCoda

Registriert seit: 21. Jul 2006
Ort: Hamburg
158 Beiträge
 
Delphi 12 Athens
 
#3

AW: Spotify über Intent

  Alt 29. Dez 2024, 00:42
So es ist schon mal gelöst.

Ich habe es nun so gemacht:
Code:
procedure TfrmMain.SendTextViaIntent(const AText: string);
var
  Intent: JIntent;
begin
  Intent := TJIntent.Create;
  Intent.setAction(TJIntent.JavaClass.ACTION_VIEW);
  Intent.setData(StrToJURI(AText));
  SharedActivity.startActivity(Intent);
end;
Vielen Dank Euch
Debuggers don’t remove bugs, they only show them in slow-motion.
  Mit Zitat antworten Zitat