如何禁用 ListView 中项目的滚动 android

How to disable scrolling of an item in ListView android

我只想防止我的列表视图的第一项滚动或将第一项粘贴在布局的顶部。我不能为此使用其他布局。

记住其他元素必须在该列表视图中滚动。

我可以这样做吗?如果可以,请告诉我怎么做??(使用阵列适配器或自定义方法或任何其他方法来做到这一点)

请帮忙...

已经访问过Disable scrolling of a ListView contained within a ScrollView

Disable scrolling in listview'

但它会禁用整个列表视图。

您可以使用 Header 视图:

mList.addHeaderView(yourFirstItemView);

记得给"yourFirstItemView"充气,像这样:

LayoutInflater inflater = getLayoutInflater();
yourFirstItemView = inflater.inflate(R.layout.item, parent);