我试图在Monodroid项目中使用ISpannable,但我有getspan的问题。我最终追求的是一个富文本编辑器,如at:
https://code.google.com/p/android-richtexteditor/source/browse/?r=4 svn/箱子/src/net/sgoliver
但是,getspan的Xamarin文档并不是特别有用。我试图从Java转换到c#的行是:
StyleSpan[] ss = s.getSpans(styleStart, position, StyleSpan.class);
然而,我不知道最后一个参数传递什么,因为在c#中编写styespan .class会产生"}expected"的编译错误。我可以向最后一个参数传递什么来获得所有跨度,或者特定类型的所有跨度?
c#对应的应该是Java.Lang.Class.FromType(typeof(StyleSpan))
。