1
我使用Xamarin,我想創建一個實現GoogleMap.InfoWindowAdapter接口的CustomWindowAdapter。如何在Xamarin中實現InfoWindowAdapter接口?
到目前爲止,我已經試過這樣:
public class CustomWindowAdapter : InfoWindowAdapter
{
}
我收到此錯誤:
Error CS0246: The type or namespace name 'InfoWindowAdapter' could not be found (are you missing a using directive or an assembly reference?)
我可以請有一定的幫助?
我需要使用哪些使用語句?
在此先感謝
謝謝。這樣可行。我能問你如何找到正確的參考? – Garry
在C#中,接口命名約定是用I啓動它,其餘的幾乎都在Android文檔中。最重要的是要找出它是一個接口還是抽象類,它將決定Xamarin的命名。 – SKall
感謝您的信息。 – Garry