ViewFlipper 中的多个 ListView 无法加载

发布于 2024-12-07 16:42:10 字数 281 浏览 0 评论 0原文

我在 viewflipper 中有 2 个活动,其中一个活动是列表活动,另一个是列表活动。我使用 setListAdapter 加载了列表活动,一切正常。

我在主布局的视图翻转器内添加了第三个活动。这第三个活动包含一个列表视图,就像我的第二个活动一样。我将 ListActivities 切换为活动并使用 setAdapter 加载列表视图。

当我运行应用程序并滑动到视图翻转器中的其他活动时,该列表为空。如果我将列表视图放在主 xml 中,列表视图就会填充得很好。

看起来列表在初始加载后正在重置。

I had 2 activities in a viewflipper with one activity and the other a listactivity. I loaded the list activity with setListAdapter and everything worked great.

I added a third activity inside a viewflipper in my main layout. This third activity contains a listview just like my second activity. I switched the ListActivities to activities and load the listviews using setAdapter.

The list are empty when I run the application and swipe to the other activity in the viewflipper. If I place the listview in the main xml the listview populates just fine.

It appears the list is getting reset after the initial load.

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

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

发布评论

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

评论(1

离去的眼神 2024-12-14 16:42:10

我一点击帖子就明白了!

我必须从布局文件中删除 xml。

<TextView android:id="@android:id/empty"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="5dp"
    android:paddingRight="5dp"
    android:background="#000000"
    android:textColor="#FFFFFF"
    android:textSize="20sp"
    android:text="No contacts exists"/>

由于我从 ListActivity 更改为 Activity,因此它覆盖了列表视图并会显示。

I figured it out as soon as i hit post!

I had to remove the xml from the layout file.

<TextView android:id="@android:id/empty"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="5dp"
    android:paddingRight="5dp"
    android:background="#000000"
    android:textColor="#FFFFFF"
    android:textSize="20sp"
    android:text="No contacts exists"/>

Since I changed to an Activity from a ListActivity this was overriding the listview and would display.

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