本文介绍了EditText上,adjustPan,滚动型问题的android的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个的EditText
括在滚动型
,但是当键盘出现。
I have a EditText
which is enclosed in ScrollView
, but when the keyboard comes up.
您不能向下滚动到现在涵盖了各个领域。我曾尝试在清单中,并在课堂上加入 adjustSize
, adjustPan
。
You can NOT scroll down to the fields that are now covered. I have tried adding adjustSize
, adjustPan
in the manifest and in the class.
但它不工作。
推荐答案
我患的是同样的问题,我找到的解决方案。所以,也许它会帮助你。
I was suffering from the same issue and I a found solution. So, maybe it will help you.
请给下面的属性,以滚动型标签:
Please give following attributes to ScrollView tag:
android:isScrollContainer="false"
而在你的活动表现为:
And in manifest of your activity to :
android:windowSoftInputMode="adjustPan"
这篇关于EditText上,adjustPan,滚动型问题的android的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!