Context: implement startService() and bindService()

This commit is contained in:
Julian Winkler
2023-09-19 23:11:56 +02:00
parent 299a474aa0
commit 2013024971
3 changed files with 47 additions and 5 deletions

View File

@@ -1,4 +1,8 @@
package android.content;
import android.os.IBinder;
public interface ServiceConnection {
public void onServiceConnected (ComponentName name, IBinder service);
}