-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
clicks when scrolling down #38
Comments
Hi, About the first one, do you mean that onClick event is fired on swiping? And the second one, I understand. I'll check that later. |
Well the bug is really easy to find in Samsung s4 version 4.4.2, it happens almost every time, but in the samsung s2 version 4.1.2 and note pro 12 the bug appears only sometimes. Well it is the OnItemClickedListener that is fired on swiping down at top of the listview or on holding at the end of the swipe the onItemLongClicked will be trigged. |
Thank you for your information. repositories {
mavenCentral()
maven {
url uri('https://oss.sonatype.org/content/repositories/snapshots/')
}
}
dependencies {
compile "com.github.ksoichiro:android-observablescrollview:1.5.0-SNAPSHOT"
} |
The click problem is solved now, great job. |
Thanks for checking and sorry about the blinking. I'll fix it soon. |
Finally I fixed it. |
Nice, thank you, it works now 👍 |
I've an action bar and there's two tabs below it. I want the action bar to hide when the listview in each tab scrolls up and show the action bar while scrolling down. I've used your library and it worked like a charm except for one issue I'm facing now. It blinks in between the action bar and the tabs while scrolling up and down. Is this issue seems familiar to you? |
Similar issue with #285 |
Hi,
thank you for all your beautiful examples.
There is a bug that is annoying, in some listview examples when the user is on the topp of the list and is trying to scroll up(swiping down) then the item the user first touch is clicked or if the user scrolls up (swiping down) and holds then the onItemLongClick will be call for the fitrst touched item. So it is too easy to click on item when the user only swipes down at the top of the list.
The problem can be found at ToolbarControlListviewActivity
I hope I'm being clear about the problem :)
And another bug i found is when you scroll up and down fast then the toolbar/sticky toolbar gets stuck and you are able to see and click at the padding views at the top of the list.
so both problems can be found at the same example, ToolbarControlListviewActivity with sticky view.
The text was updated successfully, but these errors were encountered: