AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Thema durchsuchen
Ansicht
Themen-Optionen

Spotify über Intent

Ein Thema von DaCoda · begonnen am 28. Dez 2024 · letzter Beitrag vom 29. Dez 2024
Antwort Antwort
DaCoda

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

Spotify über Intent

  Alt 28. Dez 2024, 21:41
Hallo,
ich versuche die Spotify-App zu steuern aus meiner App.

Ich versuchte das so: (AText = https://open.spotify.com/intl-de/tra...PnpWanMEo:play)

Code:
procedure TfrmMain.SendTextViaIntent(const AText: string);
var
  Intent: JIntent;
begin
  Intent := TJIntent.Create;
  Intent.setType(StringToJString('text/pas'));
  Intent.setAction(TJIntent.JavaClass.ACTION_VIEW);
  Intent.putExtra(TJIntent.JavaClass.EXTRA_TEXT, StringtoJString(AText));
  if MainActivity.getPackageManager.queryIntentActivities(Intent, TJPackageManager.JavaClass.MATCH_DEFAULT_ONLY).size > 0 then
    MainActivity.startActivity(Intent)
  else
    ShowMessage('Receiver not found');
end;
Aber ich bekomme Receiver not found.

Hat da jemand Erfahrung, oder Tip ?

DANKE!
Debuggers don’t remove bugs, they only show them in slow-motion.
  Mit Zitat antworten Zitat
Benutzerbild von Olli73
Olli73

Registriert seit: 25. Apr 2008
Ort: Neunkirchen
758 Beiträge
 
#2

AW: Spotify über Intent

  Alt 28. Dez 2024, 23:26
Geht sowas in der Art (URI anstatt URL)?

aText := spotify:track:4FZmjzFP31JGVPnpWanMEo:play
  Mit Zitat antworten Zitat
DaCoda

Registriert seit: 21. Jul 2006
Ort: Hamburg
156 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
DaCoda

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

AW: Spotify über Intent

  Alt 29. Dez 2024, 14:37
Hallo, wenn Spotify gestartet wird, dann ist meine App im Hintergrund.

Wie bekomme ich meine App automatisch wieder nach TOP ?
Debuggers don’t remove bugs, they only show them in slow-motion.
  Mit Zitat antworten Zitat
Antwort Antwort


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 06:48 Uhr.
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz