我注意到了这一点,当我在动作栏上插入图片会减慢app。
要将图像插入到我的menu.xml
[...]
<item
android:id="@+id/foo"
android:icon="@drawable/foo"
android:showAsAction="always">
[...]
然后在我的活动中我做到了:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
那么我如何优化直接从drawables资源中获取的图像呢?
提前感谢。