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"