Skip to content

Quick Return target hide scroll thumb when scroll to top!! #25

@danger1988

Description

@danger1988

I investigate the code and see that QuickReturn use a dummy invisible row to prevent the first item of listview overlap by the QuickReturn target
...
if (position < numColumns) {
if (convertView == null)
v = new View(parent.getContext());
else
v = convertView;
v.setLayoutParams(new AbsListView.LayoutParams(
AbsListView.LayoutParams.MATCH_PARENT,
targetViewHeight));

        finalHeight = targetViewHeight;
    } 

...
But by using this technique, the scroll thumb of scroll bar will be hidden by the quickreturn target when we scroll to top also.

Could you modify the code to add a dummy header instead of dummy row to prevent this happen?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions