-
Notifications
You must be signed in to change notification settings - Fork 2.7k
SwipeLayout is not working properly on AllView devices.. #203
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
Comments
I have the same problem on the device Acer Iconia A3 with Android 4.4.2. I tried the demo up, I can swipe the front view but once swiped it comes back. |
This may have a dependency to issue #36 ? |
I am also facing this issue |
Same problem on a Lenovo A5500-H. |
@daimajia Any suggesstion? |
@smhmh there was a method call in
|
Thanks @Zhuinden , You save my time! |
I haven't had issues since I commented it out, but I had issues with it not commented out. It definitely fixes the Lenovo bug. As for original code? Who knows. |
In my 4.x devices ,it works;but in my 5.x devices ,it has some bugs! |
@haoshili Yes, The suggested line should be commented just on KitKat android like this: |
I have the same problem on Wiko Birdy 4.4.2. I tried your solution but it still not work... |
Guys, I just use the BaseSwipeAdapter and it works for me for my Wiko Birdy 4.4.2. Try it out ! Cheers |
Actually guys, I guess this library isn't maintained anymore. A lot of issues reported lastly and no replies from the author. |
@smhmh work like a clockwork) |
Hi,
I had made an application and I am having a bug and also tested your demo with:
Device: ALLVIEW X2_Soul
Android version: 4.4.2
Device: ALLVIEW V1_VIPER_I
Android version: 4.4.2
And the problem is when I tap or swipe the item row, the items that are in the background (comes from the right side of the screen) and the items that are in the foreground(they go to the left side of the screen) are not staying there, they go back instantly, like its remaking the whole row, or listview..
A part of my code how is used in the getView()
LayoutInflater inflater = LayoutInflater.from(parent.getContext());
if (convertView == null) {
convertView = inflater.inflate(R.layout.list_item_command, parent, false);
}
How it is in the list item xml:
The text was updated successfully, but these errors were encountered: