Android-多个listview层叠显示,被隐藏的listview切换为显示时不显示数据

发布于 2016-11-20 09:37:57 字数 4032 浏览 1302 评论 1

界面上有三个PullToRefreshListView,呈tab切换样式,
一个显示,其余两个隐藏,我在oncreate中查询数据,并把结果给到adapter中绑定到listview里,结果只有初始为显示的listview会呈现数据,其他的没有数据,而且我在代码中把第二个切换为显示时,接着再重新绑定次数据还是不行.

界面:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ptr="http://schemas.android.com/apk/res-auto"
android:id="@+id/offlinemap_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:ignore="all" >

<!-- 标题栏和错误信息栏 -->

<LinearLayout
android:id="@+id/top_lv"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<include
android:id="@+id/title_layout"
layout="@layout/public_style_titlebar" >
</include>

<include
android:id="@+id/public_error_info_window"
android:layout_below="@id/title_layout"
layout="@layout/public_error_info_window"
android:visibility="gone" >
</include>
</LinearLayout>

<!-- 下方的切换按钮 -->

<include
android:id="@+id/bottom_lv"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
layout="@layout/public_mybusinessmark_tab" />

<!-- 滚动列表 -->

<com.handmark.pulltorefresh.library.PullToRefreshListView
android:id="@+id/accessList"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@id/bottom_lv"
android:layout_below="@id/top_lv"
android:cacheColorHint="#00000000"
android:divider="@null"
android:fadingEdge="none"
android:listSelector="#00000000"
android:scrollbars="vertical"
android:visibility="visible"
ptr:ptrMode="pullFromEnd"
ptr:ptrScrollingWhileRefreshingEnabled="true"
ptr:ptrRotateDrawableWhilePulling = "true"
ptr:ptrAnimationStyle="rotate" />

<com.handmark.pulltorefresh.library.PullToRefreshListView
android:id="@+id/notAccessList"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@id/bottom_lv"
android:layout_below="@id/top_lv"
android:cacheColorHint="#00000000"
android:divider="@null"
android:fadingEdge="none"
android:listSelector="#00000000"
android:scrollbars="vertical"
android:visibility="gone"
ptr:ptrMode="pullFromEnd"
ptr:ptrScrollingWhileRefreshingEnabled="true"
ptr:ptrRotateDrawableWhilePulling = "true"
ptr:ptrAnimationStyle="rotate" />

<com.handmark.pulltorefresh.library.PullToRefreshListView
android:id="@+id/notAuditList"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@id/bottom_lv"
android:layout_below="@id/top_lv"
android:cacheColorHint="#00000000"
android:divider="@null"
android:fadingEdge="none"
android:listSelector="#00000000"
android:scrollbars="vertical"
android:visibility="gone"
ptr:ptrMode="pullFromEnd"
ptr:ptrScrollingWhileRefreshingEnabled="true"
ptr:ptrRotateDrawableWhilePulling = "true"
ptr:ptrAnimationStyle="rotate" />
</RelativeLayout>

![界面图片]

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

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

发布评论

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

评论(1

夜无邪 2017-03-06 06:50:33

刚刚发现了一个可行的方法,
初始布局中三个listview设置为显示,oncreate中使用代码设置其余两个为隐藏,点击tab隐藏第一项显示第二项时,调用Adapter的.notifyDataSetChanged();
还有可能会出现adapter为null的现象,需要作检查.

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