我添加了用于圆形图像底部的 cresentroContainer 和KenBurnsView库来为图像设置动画。之后我出现内存不足错误,android studio 也变得非常慢。
问问题
762 次
2 回答
1
您的可绘制对象中将有大图像(可能是您当前正在测试的堆大小较小的设备较大),您将这些图像分配给 XML 中的视图。您可以缩小图像,然后以编程方式分配给视图,缩小尺寸只需通过 Picasso 或 Glid 加载图像。您也可以在应用程序标签下的清单中执行 android:largeHeap = "true",这显然是许多程序员不推荐的。
于 2016-11-29T07:12:13.790 回答
0
由于该库使用图像,只需将您的清单更新为,
<application
android:name=".MyApplication"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="Mall"
android:largeHeap="true"
android:logo="@drawable/logo_for_up"
android:screenOrientation="portrait"
android:theme="@style/AppTheme" >
</application>
于 2016-11-29T07:28:37.540 回答