android:imagebutton背景的加载时间长

时间:2013-11-08 16:56:11

标签: android image image-processing imagebutton

我正在设计一个应用程序,其中有一个链接到多个内容布局的索引页面,每个布局在屏幕中间都有一个图像按钮。 ImageButton的代码如下:

<ImageButton
            android:id="@+id/image_button"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:adjustViewBounds="true"
            android:background="@drawable/transparent_btn"
            android:focusable="false"
            android:gravity="center"
            android:scaleType="fitCenter"
            android:src="@drawable/ice_cream400" />

ice_cream400是一个400 * 400px和148KB左右的png。

问题:

我总是遇到有关图像的问题。

根据研究建议,png已经放在drawable-xhdpi文件夹下,因为系统会自动缩小大小。

我在真实手机设备中运行该应用程序并发现不时加载内容布局需要花费大量时间(大约2秒)。如何改善性能?需要获取屏幕尺寸并在导入前缩小尺寸? (图像按钮占据屏幕的70%左右)

谢谢!

0 个答案:

没有答案