TabActivity 中的图表?

发布于 2024-11-08 22:44:20 字数 558 浏览 0 评论 0原文

在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桃气十足 2024-11-15 22:44:20

创建一个活动,在活动中显示您的图表,并使 TabActivity 在您想要的选项卡中启动该活动。

Intent intent = new Intent().setClass(this, Chart.class);
spec=tabHost.newTabSpec("home").setIndicator("",res.getDrawable(R.drawable.list)).setContent(intent);
tabHost.addTab(spec);

其中 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.

Intent intent = new Intent().setClass(this, Chart.class);
spec=tabHost.newTabSpec("home").setIndicator("",res.getDrawable(R.drawable.list)).setContent(intent);
tabHost.addTab(spec);

where Chart (from Chart.class) is the Activity where the Chart is.

Hope this helps you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文