即使我是否放置滚动视图,当我的编辑文本请求焦点和键盘出现时,我的视图会自动滚动到顶部一点。它破坏了我的设计。我必须阻止这种情况发生。
你能帮我吗?
添加此
android:windowSoftInputMode="adjustPan"
android:isScrollContainer="false"
在清单文件中
将此行添加到 Manifext.xml 中的 activity 标记下,并确保您的 activity 不得使用 android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen".
android:windowSoftInputMode="adjustResize"
请尝试一下,如果仍有问题,请告诉我您的意见..!!
试试这个
child: Scaffold(
resizeToAvoidBottomInset: false, // Add this line in your code
body: SafeArea(