让我解释一下我的问题。我有一个布局,如:
<LinearLayout ... > (vertical)
<FixedHeightLayout ... /> (let's say the middle of the whole screen height)
<GridView ... /> (large grid of items)
</LinearLayout>
也就是说,我有一个垂直定向的线性布局,有两个项目:固定高度形状和网格视图。我需要能够向下滚动到整个活动的结尾,而不仅仅是列表视图。问题是我可以滚动列表视图,但我需要固定的高度布局消失。
我怎样才能做到这一点?对不起,但很难解释。
答案 0 :(得分:1)
使用addHeaderView
将“固定高度布局”作为标题添加到ListView
:
listView.addHeaderView(R.layout.fixedHeightLayout);