How can I get the position of current image displaying in Gallery view while it is swiping?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
So I don’t think that is possible because of the way adapter views work. Basically most if not all calls to the adapter view’s adapter have to be on the UI thread to work properly. And the animation is definitely on the UI thread. So since they both can’t be happening at the same time on the same thread, you can’t actually (accurately) read the position until the swiping animation is over.
If you ask the adapter getSelectedItemPosition() on any other thread it might give you the current position but might also be stale for some time since I am guessing the UI thread is going to update the value without checking for an exclusive lock.