TabActivity 中的图表?
在我的 Android 应用程序中,我有一个 TabActivity,有 3 个选项卡。在其中一个我想显示一个图表。我制作了图表,但我不知道如何在我的选项卡中显示。是否可以?
我尝试了类似的方法:
spec = getTabHost().newTabSpec("tag3");
spec.setContent(R.id.details);
spec.setIndicator(lv);
spec.setIndicator("Details", getResources()
.getDrawable(R.drawable.list));
getTabHost().addTab(spec);
其中 lv 是: lv = new LineView(this);
lv.setTitle("Budget");
lv.setAxisValueX(budget);
lv.setItems(items);
但是,什么也没有发生。知道我应该做什么吗?
In my Android app I have a TabActivity, with 3 tabs. In one of them I want to display a chart. I made the chart but I don't know how to display in my tab. Is it possible?
I tried something like that :
spec = getTabHost().newTabSpec("tag3");
spec.setContent(R.id.details);
spec.setIndicator(lv);
spec.setIndicator("Details", getResources()
.getDrawable(R.drawable.list));
getTabHost().addTab(spec);
where lv is: lv = new LineView(this);
lv.setTitle("Budget");
lv.setAxisValueX(budget);
lv.setItems(items);
But, nothing happens. Any idea what should I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个活动,在活动中显示您的图表,并使 TabActivity 在您想要的选项卡中启动该活动。
其中 Chart(来自 Chart.class)是图表所在的 Activity。
希望这对您有帮助。
Create an Activity, display your Chart in the Activity and make the TabActivity launch that activity in the Tab you want.
where Chart (from Chart.class) is the Activity where the Chart is.
Hope this helps you.