-
-
Notifications
You must be signed in to change notification settings - Fork 323
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
ParseQueryAdapter for View Pager #98
Conversation
First commit of a ParseQueryAdapter for use with ViewPager. Uses FragmentStatePagerAdapter v13 under the hood, but works basically like ParseQueryAdapter.
Parse query pager adapter
@@ -43,3 +43,13 @@ gen-external-apklibs | |||
# Gradle | |||
.gradle | |||
build | |||
ParseUI-Widget/._src |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems weird, why you have these files?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The drive I have my projects saved in, is an exFat file system, which automatically creates these files. I just auto-ignore them, as they keep popping up.
Thanks for the PR @pablobaxter!! I am trying to fetch the PR and play with it. Since it is a large PR, it will take me some time to fully understand and review it. I will update my status here. |
Removed unnecessary files from project
I had attempted to do a pull request on this, but due to some issues, attempting to do it again on this account. Here is the info:
This is a ParseQueryAdapter for use with ViewPager. Uses
FragmentStatePagerAdapter v13 under the hood, but works basically like
ParseQueryAdapter, except it attaches to a ViewPager.
This requires the minimum SDK to be raised to 13, due to the v13 support library usage. If needed, this can be modified to use the v4 support library quite easily.
Unit tests similar to that of ParseQueryAdapter, but modified for use with Fragments. Documentation also updated.