Phonegap wp8.1 app将身体推出CordovaView

时间:2014-06-09 06:04:09

标签: cordova extjs windows-phone-8.1 sencha-touch

我正在使用phonegap 3.X + sencha touch 2.3.1开发应用程序

当显示软键盘时(轻触以输入/ textarea),身体向上移动。但是当我隐藏软键盘时,身体没有恢复正常。

enter image description here

enter image description here

enter image description here

您的任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:0)

只有隐藏状态栏(shell:SystemTray.IsVisible =“False”)才会出现此问题, 我有一个解决这个问题的方法, 修改此文件\ platforms \ wp8 \ MainPage.xaml,

改变:

<my:CordovaView HorizontalAlignment="Stretch" 
               Margin="0,0,0,0"  
               x:Name="CordovaView" 
               VerticalAlignment="Stretch" />

为:

<my:CordovaView HorizontalAlignment="Stretch" 
               Margin="1,0,0,0"  
               x:Name="CordovaView" 
               VerticalAlignment="Stretch" />