1
我有一個滾動視圖,滾動視圖內我有項目,我想將它們中的一些釘在屏幕頂部(如stickyheaderListview)取決於scrollView scrollY。我嘗試了幾乎所有的東西。如何更改scrollView內的視圖位置,將其固定在屏幕頂部
如果我將我的標題項目Y位置設置爲零,它將更改位置,但在此之後它是scrollView中的第一個項目。
header.animate().y(0).setDuration(0).start(); // first attempt
header.setTop(0); // second attempt
header.animate().y(mScrollView.getLastItem().getBottom).setDuration(0).start();// third attempt
PS
我的目標是讓stickyheader列表項中滾動視圖 我想這library內滾動視圖,但它不工作,所有項目均通常滾動