Back to project page Ocypode.
The source code is released under:
MIT License
If you think the Android project Ocypode listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ocypode.component.delegate.adaptor; //w w w . ja v a2s. c o m import android.content.Context; import android.content.Intent; import android.content.ServiceConnection; public interface IStartActivityAdaptor { Context getContext(); void startActivity(Intent intent); void overridePendingTransition(int enterAnim, int exitAnim); void startActivityForResult(Intent intent, int requestCode); void startService(Intent service); void stopService(Intent service); void bindService(Intent service, ServiceConnection conn, int flags); }