当键盘显示时,离子离子含量无法正确调整

时间:2016-01-02 11:09:12

标签: angularjs sass ionic-framework ionic ionic-view

我有一个textangular作为元素的视图。在Android(我测试过)上,如果打开键盘,视图不会向上滚动以防止编辑器进入键盘。 我安装了Keyboard插件com.ionic.keyboard。

这是页面的结构:

<ion-view id="newblogview">
    <ion-nav-buttons side="left">
    ...
    </ion-nav-buttons>    
  <ion-content scroll="true" overflow-scroll="true" class="has-header" delegate-handle="mainScroll">  
     <iframe data-tap-disabled="true" style="width: 100%; min-height: 100%"  src="./templates/blog/html/blog-editor.html" name="blogeditor" id="blogeditor"></iframe>                
  </ion-content>
</ion-view>
通过关注输入键盘打开键盘时,它不会向上移动。 我尝试过android:windowSoftInputMode =&#34; adjustPan&#34;还有&#34; adjustResize&#34; 而且我也尝试过native.keyboardshow事件来调用$ ionicScrollDelegate.scrollBottom(true);

我认为我们已经为页脚添加了键盘附加指令,但我无法在页脚中放置文本编辑器。 离子框架是否支持调整键盘显示/隐藏的离子含量?是否在框架中不支持此功能,或者我遗漏了某些内容。

此问题类似于another thread,但没有接受答案。

请帮忙。 -Prakash。

1 个答案:

答案 0 :(得分:0)

您可以将其添加到您的html组件

<div delegate-handle="toThisPosition" ng-click="GoHere()"> </div>

并将其添加到控制器中的ng-click方法GoHere():

GoHere() {
$ionicScrollDelegate.$getByHandle('toThisPosition').scrollBottom(true);
}