尝试在我的Android F#项目中添加使用“Google Play Services -驱动器”的Google支持。但是在实现GoogleApiClient.IOnConnectionFailedListener
接口时,我会收到以下消息:“接口IJavaObject”包含在多个显式实现的接口类型中。添加此接口的显式实现。
这是一个错误的图像
如何实施?
发布于 2016-09-15 06:14:26
type GDriveApi () =
inherit Java.Lang.Object ()
interface Android.Runtime.IJavaObject with
member this.Handle = base.Handle
interface GoogleApiClient.IOnConnectionFailedListener with
member this.OnConnectionFailed result = ()
interface GoogleApiClient.IConnectionCallbacks with
member this.OnConnectionSuspended cause = ()
member this.OnConnected bundle = ()
https://stackoverflow.com/questions/39495255
复制相似问题