This repository has been archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9.8k
Implement Android WebView api with pigeon (Java portion) #4441
Merged
bparrishMines
merged 6 commits into
flutter:master
from
bparrishMines:webview_pigeon_java
Oct 27, 2021
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
a9b6fa2
java portion
bparrishMines a4e919c
add instance manager
bparrishMines 2fbd130
change method name
bparrishMines 8fe8aa6
add longsparsearray cheat
bparrishMines 0086300
add web chrome client
bparrishMines f5815bb
Merge branch 'master' of github.com:flutter/plugins into webview_pige…
bparrishMines 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
44 changes: 44 additions & 0 deletions
44
.../android/src/main/java/io/flutter/plugins/webviewflutter/DownloadListenerHostApiImpl.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright 2013 The Flutter Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
package io.flutter.plugins.webviewflutter; | ||
|
||
import android.webkit.DownloadListener; | ||
import io.flutter.plugins.webviewflutter.GeneratedAndroidWebView.DownloadListenerFlutterApi; | ||
|
||
class DownloadListenerHostApiImpl implements GeneratedAndroidWebView.DownloadListenerHostApi { | ||
private final InstanceManager instanceManager; | ||
private final DownloadListenerCreator downloadListenerCreator; | ||
private final GeneratedAndroidWebView.DownloadListenerFlutterApi downloadListenerFlutterApi; | ||
|
||
static class DownloadListenerCreator { | ||
DownloadListener createDownloadListener( | ||
Long instanceId, DownloadListenerFlutterApi downloadListenerFlutterApi) { | ||
return (url, userAgent, contentDisposition, mimetype, contentLength) -> | ||
downloadListenerFlutterApi.onDownloadStart( | ||
instanceId, url, userAgent, contentDisposition, mimetype, contentLength, reply -> {}); | ||
} | ||
} | ||
|
||
DownloadListenerHostApiImpl( | ||
InstanceManager instanceManager, | ||
DownloadListenerCreator downloadListenerCreator, | ||
DownloadListenerFlutterApi downloadListenerFlutterApi) { | ||
this.instanceManager = instanceManager; | ||
this.downloadListenerCreator = downloadListenerCreator; | ||
this.downloadListenerFlutterApi = downloadListenerFlutterApi; | ||
} | ||
|
||
@Override | ||
public void create(Long instanceId) { | ||
final DownloadListener downloadListener = | ||
downloadListenerCreator.createDownloadListener(instanceId, downloadListenerFlutterApi); | ||
instanceManager.addInstance(downloadListener, instanceId); | ||
} | ||
|
||
@Override | ||
public void dispose(Long instanceId) { | ||
instanceManager.removeInstance(instanceId); | ||
} | ||
} |
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
Oops, something went wrong.
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.
Creator inner classes are used to make it easier to test constructors