This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6k
[android] Childview will process its motion events #19662
Merged
blasten
merged 4 commits into
flutter:master
from
iskakaushik:consume_input_events_at_child_view
Jul 15, 2020
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -19,12 +19,14 @@ | |
import androidx.annotation.NonNull; | ||
import androidx.annotation.UiThread; | ||
import androidx.annotation.VisibleForTesting; | ||
import io.flutter.embedding.android.AndroidTouchProcessor; | ||
import io.flutter.embedding.android.FlutterImageView; | ||
import io.flutter.embedding.android.FlutterView; | ||
import io.flutter.embedding.android.MotionEventTracker; | ||
import io.flutter.embedding.engine.FlutterOverlaySurface; | ||
import io.flutter.embedding.engine.dart.DartExecutor; | ||
import io.flutter.embedding.engine.mutatorsstack.*; | ||
import io.flutter.embedding.engine.renderer.FlutterRenderer; | ||
import io.flutter.embedding.engine.systemchannels.PlatformViewsChannel; | ||
import io.flutter.plugin.editing.TextInputPlugin; | ||
import io.flutter.view.AccessibilityBridge; | ||
|
@@ -45,6 +47,8 @@ public class PlatformViewsController implements PlatformViewsAccessibilityDelega | |
|
||
private final PlatformViewRegistryImpl registry; | ||
|
||
private AndroidTouchProcessor androidTouchProcessor; | ||
|
||
// The context of the Activity or Fragment hosting the render target for the Flutter engine. | ||
private Context context; | ||
|
||
|
@@ -673,12 +677,17 @@ private void initializePlatformViewIfNeeded(int viewId) { | |
platformViews.put(viewId, view); | ||
|
||
FlutterMutatorView mutatorView = | ||
new FlutterMutatorView(context, context.getResources().getDisplayMetrics().density); | ||
new FlutterMutatorView( | ||
context, context.getResources().getDisplayMetrics().density, androidTouchProcessor); | ||
mutatorViews.put(viewId, mutatorView); | ||
mutatorView.addView(platformView.getView()); | ||
((FlutterView) flutterView).addView(mutatorView); | ||
} | ||
|
||
public void attachToFlutterRenderer(FlutterRenderer flutterRenderer) { | ||
androidTouchProcessor = new AndroidTouchProcessor(flutterRenderer, /*trackMotionEvents=*/ true); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. wdyt about making There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. so for moving trackMotionEvents to AndroidTouchProcessor, the only reason i did not have the additional arg |
||
} | ||
|
||
public void onDisplayPlatformView( | ||
int viewId, | ||
int x, | ||
|
This file contains hidden or 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 hidden or 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.
Uh oh!
There was an error while loading. Please reload this page.