Android、ListActivity 和子视图

发布于 2024-12-02 17:37:42 字数 158 浏览 0 评论 0原文

我有一个显示 ListViewListActivity 。我从主要活动开始活动,并且希望列表视图在主要活动的视图中显示为子视图。我该怎么做?

(这足以回答更一般的问题 - 如何将一个活动绑定到另一个活动的内容视图中的子视图?)

I have a ListActivity which displays a ListView. I'm starting the activity from my main activity, and I'd like for the list view to appear as a subview in the view of my main activity. How do I do this?

(It's enough to answer the more general question - how do you bind an activity to a subview in the content view of another activity?)

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

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

发布评论

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

评论(1

霓裳挽歌倾城醉 2024-12-09 17:37:42

将 ListView 的 id 设置为 andriud:id="@android:id/list"。请参阅 ListActivity 的 Javadoc:

[Y]您可以通过在 onCreate() 中使用 setContentView() 设置您自己的视图布局来自定义屏幕布局。为此,您自己的视图必须包含一个 id 为“@android:id/list”的 ListView 对象(如果在代码中则为 list)

Set the id of your ListView to andriud:id="@android:id/list". See the Javadoc for ListActivity:

[Y]ou can customize the screen layout by setting your own view layout with setContentView() in onCreate(). To do this, your own view MUST contain a ListView object with the id "@android:id/list" (or list if it's in code)

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