Android 活动组和列表活动

发布于 2024-12-22 15:56:42 字数 182 浏览 3 评论 0原文

我需要在 TabHost 中的活动中有一个列表。单击按钮时会打开该列表。然而,我希望新活动打开并将选项卡保持在顶部,因此我创建了一个类 TabActivityGroup,它扩展了 ActivityGroup,并且我的每个活动都扩展了 TabActivityGroup。我如何在不扩展 ListActivity 的情况下创建列表,因为我无法扩展两个类。

I need to have a List in an Activity that is in a TabHost. The list gets opened when a button is clicked. I however want the new activity to open up and keep the tabs on top, so I created a class, TabActivityGroup, that extends the ActivityGroup and each of my activities extend TabActivityGroup. How would I create a list without extending ListActivity as I cannot extend two classes.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

牵你手 2024-12-29 15:56:42

不要使用ListActivity。只需进行常规活动即可。在布局文件中执行以下操作:

为列表提供一个 id

<ListView
    android:id="@+id/name_of_list"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
</ListView>

在您的活动中使用:

ListView listView = (ListView)findViewById(R.id.name_of_list);

    mAdapter = new SomeSortOfAdapter(this, items);
    listView.setAdapter(mAdapter);

现在您可以使您的活动成为 ActivityGroup
:)

Do not use ListActivity. Just use a regular activity. In the layout file do the following:

Give the list an id

<ListView
    android:id="@+id/name_of_list"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
</ListView>

Inside your activity use:

ListView listView = (ListView)findViewById(R.id.name_of_list);

    mAdapter = new SomeSortOfAdapter(this, items);
    listView.setAdapter(mAdapter);

Now you can make your activity be ActivityGroup
:)

↙温凉少女 2024-12-29 15:56:42

嗯,我怀疑你的处理方式是错误的。查看选项卡布局示例。您想要做的是将 ListView 的一些子类添加为 TabHost 视图的子视图,而不是具有多重继承。我建议阅读该教程并重新思考如何构建应用程序。

Hmm, I suspect you're going about this the wrong way. Check out the Tab Layout example. What you want to be able to do is add some subclass of the ListView as a subview of the TabHost view rather than having multiple inheritance. I'd suggest reading through that tutorial and rethinking how you're structuring your app.

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