-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
minimum API supported? #694
Comments
Not an answer to your question but, you really shouldn't bother supporting API 8 unless you have a very very good reason. Probably shouldn't even bother supporting anything before 16. |
Well the reason is I know too many ppl who belong to that 2% :) (still being sold and some people prefer not to carry around widescreen TV's) I can imagine it was deprecated somewhere along new features, but main page still mentions 2.2, and the demo required API 11, even though it works for the emulator on API 8, the real device (HTC desire) shows the same strange behavior for my implementation and the bare demo. Strange jitter during drag and every now and then the layout gets mangled (bottom panel disappears, sometimes up, sometimes down) I'm waiting for feedback on those other devices, will post results when I get them. |
slight update, this seems to be related to issue #525
my guess is the offset value which seems to jump all over the place , whenever it works the values for offset are nice between 0 and 1, when strange behavior happens the offset is occasionally > 1 or 2 (both positive and negative) an example, at this point the panel is stuck on top, and sliding gestures show it but never at the correct (top or bottom) positions |
It was originally supported to work on 8 - so it probably should. I just On Thu, Mar 31, 2016 at 8:03 AM, harrierjack notifications@github.com
|
In the process of cleaning and some last testing, will PR when I'm certain everything works. I did trace it down to topBoundCollapsed which became negative for no reason, which brought me to computePanelTopPosition(0) where the problem immediately (and at this point consistently) disappeared when I created a debug line calculating the values before they were calculated in the return statement. My guess is some sort of race condition, the sliding of the panel is buttery smooth now anyways :)
|
Is the library still supporting API 8? Because it works fine on API 16+ devices, but I can not get it to work properly on an android 2.2 device.
The sliding is very jittery when dragging (not so when just tapping dragview) and after several drags my bottom slidingPanel shoots up and vanishes..
I'm asking because the main page mentions android 2.2+ (API 8+) while the demo requires API 11, and both my app and the unaltered (except for min-API) demo show the same behavior.
The text was updated successfully, but these errors were encountered: