如何在 BlackBerry Table 中显示整数值
我需要在表中显示“整数”类型的值。 现在,我想做的就是简单地检查“getDataFields()”中的类型“Integer” DataTemplate 的方法并将此 DataTemplate 设置为我的 TableView 的数据模板。
下面的屏幕截图向您展示了我的“getDataFields”方法。在模拟器上运行此代码后,我只收到 NoClassDefFoundError。
你们中有人知道如何做到这一点吗?
设置:BB Eclipse 插件 v1.3、SDK 6.0
i need to display values of the type "Integer" in a table.
now, what i thought to do, is to simply check for the type "Integer" in the "getDataFields()"
method of DataTemplate and to set this DataTemplate as the datatemplate of my TableView.
The screenshot below shows you my "getDataFields" method. After running this code on a simulator i just get a NoClassDefFoundError.
Do any of you guys have any ideas how to do this?
Setup: BB Eclipse Plugin v1.3, SDK 6.0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们开始吧:)
(注意:我将类型更改为 Double 而不是 Integer,但它的工作方式相同)
我实际想要做的如下所示:
所以我用几个向量填充“kurse”向量。示例中的向量“atx”包含不同的元素:字符串和双精度数。我需要用不同的类型传递它们,因为字符串的样式与双精度数不同。
使用上面的代码给了我NoClassDefFoundError,将值作为字符串传递,就像
完美的作品一样。
Here we go :)
(Note: I changed the type to Double instead of Integer, but it works the same way)
What I actually want to do is shown below:
So I'm filling the "kurse" Vector with several Vectors. The Vector in the example, "atx", contains different elements, Strings and Doubles. I need to pass them with different types, because Strings are going to be styled differently than Doubles.
Using the code above is giving me the NoClassDefFoundError, passing the value as String instead, like
works perfectly.