Hallo,
Ich bin dabei, den NotificationCompat.MediaStyle in Delphi zu importieren.
Das läuft alles soweit auch ganz gut, aber beim implementieren einer Methode habe ich Schwierigkeiten:
https://developer.android.com/refere...ctView(int...)
Bei der Beschreibung der Parameter von setShowActionsInCompactView steht folgendes:
Code:
public Notification.MediaStyle setShowActionsInCompactView (int... actions)
actions int: the indices of the actions to show in the compact notification view
Wie sieht dieser Parameter in Delphi aus?
Code:
function setShowActionsInCompactView(action: integer) : Japp_NotificationCompat_MediaStyle; cdecl; overload;
Funktioniert nicht, was auch nachvollziehbar ist, da man bis zu 3 Actions angeben kann.
(action1: integer, action2: integer, action3: integer) funktioniert aber auch nicht.
Was ist der Parameter also? Ein Array? Was bedeutet "(int...)" in der Android Doku?
Liebe Grüsse und Danke