Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将一个 EditText 字段添加到我当前的视图中,并且它正在工作。但是,当我在字段中单击以键入时,键盘从底部升起但不重叠任何东西,它迫使我的视图挤到一半大小。它看起来非常糟糕。有谁知道我怎样才能阻止这种情况发生?
在清单中的 Activity 声明中,添加属性android:windowSoftInputMode:
android:windowSoftInputMode
<activity android:name=".MyActivity" android:windowSoftInputMode="adjustPan" />
adjustPan告诉它不要调整活动视图的大小,而是平移内容,以便您的编辑字段保持在视图中。
adjustPan