如何在XAML xamarin中访问字符串数组项属性

时间:2017-03-28 17:44:26

标签: arrays xamarin xamarin.android

string-array被选中时,是否可以访问Spinner项的属性? 我有以下字符串数组:

<string-array name="paypal_selling_rates">
        <item fee="0.026">Under $2,500</item>
        <item fee="0.022">$2,500.01 - $5,000</item>
        <item fee="0.020">$5,000.01 - $15,000</item>
        <item fee="0.015">$15,000.01 - $150,000</item>
        <item fee="0.011">Over $150,000</item>
    </string-array>

现在我可以像这样获得所选项目的价值:

paypalSellingRates.SelectedItem.ToString();

但我如何才能获得属性费?

1 个答案:

答案 0 :(得分:1)

这看起来像Android问题。在Android上,字符串数组资源不能具有项目的属性。

所以答案是你不能。

official Android documentation中了解详情。