Xamarin Android类中的错过方法(RoundedBitmapDrawable)

时间:2015-09-25 08:00:33

标签: xamarin xamarin.android

我可以在Android文档中看到它有一个圆角等库,它是RoundedBitmapDrawable,我看到它有一个setCircular方法。 https://developer.android.com/reference/android/support/v4/graphics/drawable/RoundedBitmapDrawable.html#setCircular(boolean)

我在Xamarin Android中看到了这个类。但我无法找到这种方法或类似的东西(Circular,SetCircular),类在Xamarin Android支持库中:https://components.xamarin.com/view/xamandroidsupportv4-18

有人知道为什么或我错了吗? Xamarin Android库与Android的1:1等价还是有很多类似的情况?

感谢。

1 个答案:

答案 0 :(得分:0)

我也在寻找它并发现它实际上不是一种方法,而是你必须设置的属性:

In [2]: two2dec('1111')
Out[2]: -1

In [3]: two2dec('111111111111')
Out[3]: -1

In [4]: two2dec('0101')
Out[4]: 5

In [5]: two2dec('10000000')
Out[5]: -128

In [6]: two2dec('11111110')
Out[6]: -2

In [7]: two2dec('01111111')
Out[7]: 127

正如您在屏幕截图中看到的那样,您也可以设置RoundedBitmapDrawable roundedBitmap = RoundedBitmapDrawableFactory.Create(getResources(), bitmap); roundedBitmap.Circular = true; ,但没有CornerRadius方法。

Screenshot