Latency issue for application on HTC ONE developed using Sencha Touch 2.1(Android 4.0.x)

一世执手 提交于 2019-12-23 16:40:47

问题



I have developed an application using Sencha Touch 2.1 Framework. The application being installed on the HTC ONE device running on Android 4.0.x version.

It is observe that app's response time is very slow while
1. Traversing from one screen to another screen
2. While fetching data from server
3. After a tap on any icon, loading mask takes time to get displayed
4. Due to screen transition is taking time, the header of previous screen gets displayed on current screen momentarily and then only the header of current screen is displayed.

The app is working appropriately on the Samsung Galaxy S2/S3 running on same android version.Appreciate any help in this regards.

Browsing internet on this topic gave me couple of links which points to turn off "toggle Ciphering". But that didn't helped either. The links mentioned below.

https://forum.xda-developers.com/showthread.php?t=1118017
http://www.addictivetips.com/mobile/how-to-improve-slow-data-speed-on-htc-sensation-data-latency-fix/


回答1:


Disappointed that I didn't got any answer from the community. And someone gave it down vote.
However, applying the below CSS to the component like titlebars, panel of home screen resolved the issue.

.x-panel {
   -webkit-perspective: 1000;
   -webkit-backface-visibility: hidden;
}


来源:https://stackoverflow.com/questions/16732672/latency-issue-for-application-on-htc-one-developed-using-sencha-touch-2-1androi

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!