尝试在我的Android F#项目中使用“Google Play Services - Drive”添加Google云端硬盘支持。但是在实现GoogleApiClient.IOnConnectionFailedListener
接口时,我收到以下消息'接口IJavaObject'包含在多个显式实现的接口类型中。添加此接口的显式实现'。
如何实施?
答案 0 :(得分:0)
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 = ()