我正在制作带有一堆图像按钮的scrollView。不幸的是,这个视图需要很长时间才能加载 - 以至于假设它是错误的,用户可能会关闭应用程序。
关于如何让这个过程更快的任何想法?
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TableLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent"
>
<TableRow>
<ImageButton
android:id="@+id/ImageButtonCone"
android:layout_width="160dp"
android:layout_height="200dp"
android:scaleType="fitCenter"
android:background="@drawable/cone"
/>
<ImageButton
android:id="@+id/ImageButtonCube"
android:layout_width="160dp"
android:layout_height="200dp"
android:scaleType="fitCenter"
android:background="@drawable/cube"
/>
</TableRow>
<TableRow>
<ImageButton
android:id="@+id/ImageButtonCylinder"
android:layout_width="160dp"
android:layout_height="200dp"
android:scaleType="fitCenter"
android:background="@drawable/cylinder"
/>
<ImageButton
android:id="@+id/ImageButtonTrapezoidalprism"
android:layout_width="160dp"
android:layout_height="200dp"
android:scaleType="fitCenter"
android:background="@drawable/trapezoidal_prism"
/>
等...
答案 0 :(得分:2)
我已经解决了这个问题......我只在drawable-mdpi文件夹中有png,而在其他drawable文件夹中没有。我已经制作了每个png的副本并将它们粘贴在drawable-ldpi,drawable-mdpi和drawable-xhdpi中,现在它可以在手机和模拟器上快速工作。
据推测,模拟器采用的是中等清晰度.png,但是手机想要采用不同的分辨率而无法使用。