Android-多个listview层叠显示,被隐藏的listview切换为显示时不显示数据
界面上有三个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
刚刚发现了一个可行的方法,
初始布局中三个listview设置为显示,oncreate中使用代码设置其余两个为隐藏,点击tab隐藏第一项显示第二项时,调用Adapter的.notifyDataSetChanged();
还有可能会出现adapter为null的现象,需要作检查.