您好,登錄后才能下訂單哦!
本篇內容介紹了“如何理解Flutter軟鍵盤的原理”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
Flutter頁面在軟鍵盤彈出的時候,可以設置 Scaffold 的 resizeToAvoidBottomInset 屬性來設置軟鍵盤的處理。
當這個值為true的時候,頁面會進行重新布局。那么我們應該如何監聽 Flutter 的鍵盤彈出和頁面的高度變化?
我們從 Flutter 鍵盤彈出說起。當一個輸入框 TextField 的焦點變化的時候,焦點變化會執行
_openOrCloseInputConnectionIfNeeded 方法:
if (_hasFocus && widget.focusNode.consumeKeyboardToken()) { _openInputConnection(); } else if (!_hasFocus) { _closeInputConnectionIfNeeded(); widget.controller.clearComposing(); }
這里會調用 TextInputConnection 的 show 方法打開鍵盤:
void _show() { _channel.invokeMethod<void>('TextInput.show'); }
這里會通過 _show 的調用,去調 TextInput.show 這個方法
// android 端實現 mImm = (InputMethodManager) view.getContext().getSystemService(Context.INPUT_METHOD_SERVICE); // TextInputHandler private void showTextInput(View view) { view.requestFocus(); mImm.showSoftInput(view, 0); }
在Android 端,最后是調用 InputMethodManager 來打開軟鍵盤。這里的 view 指的就是 FlutterView 。
此時 View 的 onApplyWindowInsets 會被調用:
// FlutterView mMetrics.physicalViewInsetBottom = navigationBarVisible ? insets.getSystemWindowInsetBottom() : guessBottomKeyboardInset(insets); updateViewportMetrics(); private int guessBottomKeyboardInset(WindowInsets insets) { int screenHeight = getRootView().getHeight(); // Magic number due to this being a heuristic. This should be replaced, but we have not // found a clean way to do it yet (Sept. 2018) final double keyboardHeightRatioHeuristic = 0.18; if (insets.getSystemWindowInsetBottom() < screenHeight * keyboardHeightRatioHeuristic) { // Is not a keyboard, so return zero as inset. return 0; } else { // Is a keyboard, so return the full inset. return insets.getSystemWindowInsetBottom(); } }
這里我們可以看到,在 Android 端,軟鍵盤的高度在底部欄可見的時候取的就是系統 window inset 的 bottom。
如果不可見,就會根據 bottom inset 的占比去猜測。當這個高度大于 0.18 的時候,就會認為是鍵盤彈出。
當判斷是軟鍵盤后,會通過刷新 ViewportMetrics 來觸發頁面重繪:
// FlutterView private void updateViewportMetrics() { if (!isAttached()) return; mNativeView .getFlutterJNI() .setViewportMetrics( mMetrics.devicePixelRatio, mMetrics.physicalWidth, mMetrics.physicalHeight, mMetrics.physicalPaddingTop, mMetrics.physicalPaddingRight, mMetrics.physicalPaddingBottom, mMetrics.physicalPaddingLeft, mMetrics.physicalViewInsetTop, mMetrics.physicalViewInsetRight, mMetrics.physicalViewInsetBottom, mMetrics.physicalViewInsetLeft, mMetrics.systemGestureInsetTop, mMetrics.systemGestureInsetRight, mMetrics.systemGestureInsetBottom, mMetrics.systemGestureInsetLeft); }
metrics 更新在 Dart 端的入口在 hooks.dart 中
@pragma('vm:entry-point') void _updateWindowMetrics( //...省略參數 ) { _invoke(window.onMetricsChanged, window._onMetricsChangedZone); }
經過上面的理論分析,我們可以得出結論,Flutter 軟鍵盤的高度變化體現在 metrics 的變化。具體的值,則體現在 window.viewInsets.bottom 中。
“如何理解Flutter軟鍵盤的原理”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。