1

让我解释一下我的问题。我有一个布局,例如:

<LinearLayout ... >  (vertical)

    <FixedHeightLayout ... />    (let's say the middle of the whole screen height)
    <GridView ... />             (large grid of items)

</LinearLayout>

也就是说,我有一个垂直方向的线性布局,其中包含两个项目:一个固定高度的形状和一个网格视图。我确实需要能够向下滚动到整个活动的末尾,而不仅仅是列表视图。问题是我可以滚动列表视图,但我需要固定高度布局才能消失。

我怎样才能做到这一点?对不起,但很难解释。

4

1 回答 1

1

将“固定高度布局”作为标题添加到您的ListViewwith addHeaderView

listView.addHeaderView(R.layout.fixedHeightLayout);
于 2013-08-22T16:24:11.560 回答