-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
[Android] Fix gif animation initial state #14295
Merged
Merged
Changes from 15 commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
a25644e
Fix gifs initial animation state on Android
jsuarezruiz b917881
Device tests
jsuarezruiz 964a463
Auto-format source code
baede13
Updated sample
jsuarezruiz e4c0515
Merge branch 'fix-7019' of https://github.com/dotnet/maui into fix-7019
jsuarezruiz 32cd083
Merge branch 'main' into fix-7019
jsuarezruiz 4850e65
Updated device tests
jsuarezruiz 4339578
Merge branch 'main' into fix-7019
jsuarezruiz ab1e1c2
Merge branch 'main' into fix-7019
jsuarezruiz d0e4c17
Refactor code
jsuarezruiz fcee3ac
Merge branch 'main' into fix-7019
jsuarezruiz 518073a
Merge branch 'main' into fix-7019
jsuarezruiz 37226da
Merge branch 'main' into fix-7019
jsuarezruiz 1076201
Merge branch 'main' into fix-7019
jsuarezruiz 9101c9d
Merge branch 'main' into fix-7019
jsuarezruiz 392bfb8
Update src/Core/src/Handlers/Image/ImageHandler.Android.cs
jsuarezruiz 882d368
Merge branch 'main' into fix-7019
jsuarezruiz 2415826
Merge branch 'fix-7019' of https://github.com/dotnet/maui into fix-7019
jsuarezruiz 48ef08d
Remove unnecessary change
jsuarezruiz ee620d7
Merge branch 'main' into fix-7019
jsuarezruiz 1682a58
Fix build errors
jsuarezruiz a35161e
Merge branch 'main' into fix-7019
jsuarezruiz fad12cc
Merge branch 'main' into fix-7019
jsuarezruiz 2d9bcd8
Merge branch 'main' into fix-7019
jsuarezruiz a2e207c
Merge branch 'main' into fix-7019
jsuarezruiz 4a5dbf2
Merge branch 'main' into fix-7019
jsuarezruiz 375345d
Merge branch 'main' into fix-7019
jsuarezruiz 3ecd591
Merge branch 'main' into fix-7019
jsuarezruiz cc11d0c
Merge branch 'main' into fix-7019
jsuarezruiz 42e07ca
Merge branch 'main' into fix-7019
jsuarezruiz b63105a
Merge branch 'main' into fix-7019
jsuarezruiz aec4154
Merge branch 'main' into fix-7019
jfversluis 4c1331f
Fix merge mistake
jfversluis 2c0cb0a
Merge branch 'main' into fix-7019
jsuarezruiz dce29d6
Merge branch 'main' into fix-7019
jsuarezruiz 4b57cbc
Merge branch 'main' into fix-7019
jsuarezruiz 526c417
Merge branch 'main' into fix-7019
jsuarezruiz 7b01b8c
Merge branch 'main' into fix-7019
jsuarezruiz 63afc63
Merge branch 'main' into fix-7019
jsuarezruiz 4cc7eb9
Merge branch 'main' into fix-7019
jsuarezruiz 984c9c5
Merge branch 'main' into fix-7019
jsuarezruiz d5513e2
Merge branch 'main' into fix-7019
jsuarezruiz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Should we just make this an
async Task
and then await each? Not sure if this may have issues with the ContinueWith... Are we sure the threads will be correct when the source finishes?