Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
flutter_boost_1.22.4
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李增强
flutter_boost_1.22.4
Commits
f78fb4b9
Commit
f78fb4b9
authored
Sep 11, 2019
by
yangwu.jia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix Input box bug
parent
3f2ae0d6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
10 deletions
+11
-10
android/src/main/java/com/idlefish/flutterboost/BoostFlutterView.java
...main/java/com/idlefish/flutterboost/BoostFlutterView.java
+2
-0
android/src/main/java/com/idlefish/flutterboost/XFlutterView.java
...src/main/java/com/idlefish/flutterboost/XFlutterView.java
+9
-10
No files found.
android/src/main/java/com/idlefish/flutterboost/BoostFlutterView.java
View file @
f78fb4b9
...
@@ -54,6 +54,7 @@ public class BoostFlutterView extends FrameLayout {
...
@@ -54,6 +54,7 @@ public class BoostFlutterView extends FrameLayout {
private
BoostFlutterEngine
mFlutterEngine
;
private
BoostFlutterEngine
mFlutterEngine
;
private
XFlutterView
mFlutterView
;
private
XFlutterView
mFlutterView
;
private
PlatformPlugin
mPlatformPlugin
;
private
Bundle
mArguments
;
private
Bundle
mArguments
;
...
@@ -113,6 +114,7 @@ public class BoostFlutterView extends FrameLayout {
...
@@ -113,6 +114,7 @@ public class BoostFlutterView extends FrameLayout {
if
(
mArguments
==
null
)
{
if
(
mArguments
==
null
)
{
mArguments
=
new
Bundle
();
mArguments
=
new
Bundle
();
}
}
mPlatformPlugin
=
new
PlatformPlugin
((
Activity
)
getContext
(),
mFlutterEngine
.
getPlatformChannel
());
mFlutterView
=
new
XFlutterView
(
getContext
(),
getRenderMode
(),
getTransparencyMode
());
mFlutterView
=
new
XFlutterView
(
getContext
(),
getRenderMode
(),
getTransparencyMode
());
addView
(
mFlutterView
,
new
FrameLayout
.
LayoutParams
(
addView
(
mFlutterView
,
new
FrameLayout
.
LayoutParams
(
...
...
android/src/main/java/com/idlefish/flutterboost/XFlutterView.java
View file @
f78fb4b9
...
@@ -450,7 +450,7 @@ public class XFlutterView extends FrameLayout {
...
@@ -450,7 +450,7 @@ public class XFlutterView extends FrameLayout {
// Initialize various components that know how to process Android View I/O
// Initialize various components that know how to process Android View I/O
// in a way that Flutter understands.
// in a way that Flutter understands.
if
(
textInputPlugin
==
null
){
textInputPlugin
=
new
XTextInputPlugin
(
textInputPlugin
=
new
XTextInputPlugin
(
this
,
this
,
this
.
flutterEngine
.
getDartExecutor
()
this
.
flutterEngine
.
getDartExecutor
()
...
@@ -459,7 +459,6 @@ public class XFlutterView extends FrameLayout {
...
@@ -459,7 +459,6 @@ public class XFlutterView extends FrameLayout {
this
.
flutterEngine
.
getKeyEventChannel
(),
this
.
flutterEngine
.
getKeyEventChannel
(),
textInputPlugin
textInputPlugin
);
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment