首页 > 代码库 > Android学习—解决ListView部分内容被Tabhost遮盖问题
Android学习—解决ListView部分内容被Tabhost遮盖问题
问题:tabhost固定在底部,某个tab中存在Listview,运行起来后发现如果listview中的列表内容比较多(超过一屏时),就会出现部分内容被tabhost遮盖了。
原Listview布局文件
<ListView android:id="@+id/listBudgetSet" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="4dp" android:layout_marginRight="4dp"> </ListView>
后来经过多次调试,发现可以通过配置Listview解决这个问题,下面是重新配置listview的:
在<ListView>中加上android:layout_weight="1" ,并且在listview的下方加一个布局,这是用于留出tabhost显示的空间(也就是让listview的滚动条增长70dp)
<ListView android:id="@+id/listBudgetSet" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="4dp" android:layout_marginRight="4dp" android:layout_weight="1"> </ListView> <LinearLayout android:id="@+id/budgetLT" android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="70sp" > </LinearLayout>
重新设置后,滚动条明显边长了,问题解决~~~
不过在代码那边我也有做处理,为了是让这个界面适用不同的oncreate入口,就需要判断隐藏或显示listview下方的布局,这里就不贴代码了,定义一个全局静态变量,控制LinearLayout显示或隐藏就ok了。
本文出自 “QYtag (Upspringing)” 博客,请务必保留此出处http://qytag.blog.51cto.com/6125308/1587855
Android学习—解决ListView部分内容被Tabhost遮盖问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。