View too large to fit into drawing cache, needs 6400000 bytes, only 3686400 available

来源:互联网 发布:在线seo外链工具软件 编辑:程序博客网 时间:2024/06/11 08:08
今天突然出现了这个问题

View too large to fit into drawing cache, needs 6400000 bytes, only 3686400 available

找了一大堆资料,神马硬件加速啊,神马绘制view底层实现啊,发现其实一行代码就好

manifest文件acticity声明的时候加一句android:hardwareAccelerated="false"即可

like this

 <activity            android:name="com.unicom.eom.rm.mobileterminal.platform.activity.QRCode.HLNScrollView.HLNScrollActivity"            android:screenOrientation="portrait"             android:hardwareAccelerated="false"            android:theme="@android:style/Theme.Light.NoTitleBar" >        </activity>

想知道原理的这有传送门http://www.cnblogs.com/emmet7life/p/4185182.html

结果出处:https://archive.appcelerator.com/question/161165 亲测有效
0 0
原创粉丝点击