How to add margin between EditText and Soft Keyboard?(如何在 EditText 和软键盘之间添加边距?)
问题描述
我想在 EditText 和软键盘之间添加 10dp 的边距.
I want to add 10dp margin between EditText and Soft Keyboard.
这是我的 XML:
这是我的 onCreate()
:
我正在使用 viewpager 和全屏主题.以下 EditText 在我的第三个片段中.
I am using viewpager and full screen theme. The following EditText is in my 3rd fragment.
我使用了 android:windowSoftInputMode="adjustResize|adjustPan"
和 android:windowSoftInputMode="adjustResize"
,但什么也没发生.
I've used android:windowSoftInputMode="adjustResize|adjustPan"
and android:windowSoftInputMode="adjustResize"
, but nothing happened.
推荐答案
我发现paddingBottom
的属性会影响editText
和键盘的距离.你可以这样做:
I find the attribute of paddingBottom
can effect the distance between the editText
and the keyboard. You can do like this:
这将使您的键盘边距 EditText
10dp
This will make your keyboard margin your EditText
by 10dp
这篇关于如何在 EditText 和软键盘之间添加边距?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!