Android:如何在Achartengine中的图表下创建列表?
Android:嗨,我正在使用 AchartEngine 在我的应用程序中显示图表
我尝试了不同的方法来显示此图表,并在我的应用程序中的图表下显示一些列表,但我没有。我不知道如何使用这些图表来定义 xml 布局。我可以在不使用 xml 布局的情况下显示图表。
非常感谢。
问候, 哈利.
Android: Hi, I'm using AchartEngine to display charts in my App
I have tried different ways to display this charts with some lists under the chart in my app, but I haven't. I have no Idea about how to use these charts with defining layouts in xml. I'm able to display the graphs without using the xml layouts.
Many Thanks in Advance.
Regards,
Harry.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的项目中引用了 Achartengine(或者如果您包含源代码则进行了编译),那么您应该会在 Eclipse 布局设计器中看到可用的视图。
只需将视图拖到您的布局上即可。
或者,您可以动态创建布局,但这需要一些额外的工作和研究
If Achartengine is referenced in your project (or compiled if you are including the source) then you should see the view available in the eclipse layout designer.
Just drag the view onto your layout.
Alternatively you can dynamically create your layout however this will require a little extra work and research
AchartEngine 有一个
ChartFactory
类,用于创建视图或意图。因此,您可以将返回的视图设置在 xml 中所需的位置。
这样你就可以创建一个 xml,这里我有一个 LinearLayout,它将包含我的图表。
现在,在 Activity 类中,您可以通过获取 LinearLayout 的 id 并将视图添加到 LinearLayout 来显示图表。在 ListView 的
onItemClick()
中显示图表。AchartEngine has a class
ChartFactory
which is used for creating views or intents.So, possibly you can set the view returned at desired place in the xml.
This way you can create a xml, here I have a LinearLayout that will contain my Graph.
Now, in Activity class you can show the Graph by getting the id of LinearLayout and adding view to your LinearLayout. In the
onItemClick()
of the ListView show the Graph.