我正在寻找解决方案,从 SQLite 加载 20 个项目的速度超过 5 秒(这是我现在正在加载的秒数。) - 首先,我使用的是自定义 Listview 适配器。
我在 1 秒内加载了 5 个项目。我尝试加载 20 个项目,并在 5 秒内加载它们。这是我从数据库中检索的字段:int、String、String、int、Bytes、float、int。
您可能会想,在获取字节后,我将它们转换为位图。
Bitmap image = convertBlobToImage(cursor.getBlob(4));
// Using this function:
public Bitmap convertBlobToImage(byte[] value){
byte[] new_value = Base64.decode(value, 0);
return BitmapFactory.decodeByteArray(new_value, 0, new_value.length);
}
因此,在我的类字段中,他们将获得的不是字节,而是位图。阅读时间长的原因之一可能是位图。我刚刚对Paint进行了测试。我保存了两个相同的图像,一个在 BMP 中,另一个在 JPG 中。JPG 图像大小为 2,87KB,BMP 大小为420KB!!
使用上面的代码,我得到的结果是什么?可能的解决方案之一可能是:http ://www.mkyong.com/java/how-to-convert-byte-to-bufferedimage-in-java/ ?
你们有什么感想?谢谢。
编辑:我在搜索,发现关于 onDestroy()。我也没有实现“runOnUiThread”,我就是这样说的。但我认为这并没有给我带来更好的结果。你怎么看?这能提高性能吗?
@Override
protected void onDestroy() {
super.onDestroy();
listView.setAdapter(null);
}
// And I also tried to put runOnUiThread:
runOnUiThread(new Runnable() {
@Override
public void run() {
Bundle extras = getIntent().getExtras();
if (extras != null) {
DatabaseHandler db = new DatabaseHandler(Produtos.this);
display_products = db.get_all_oc_product(extras.getString("category_id"));
listView = (ListView) findViewById(R.id.product_listview);
inputSearch = (EditText) findViewById(R.id.product_inputSearch);
adapter = new itemAdapter(Produtos.this,R.layout.row, display_products);
listView.setAdapter(adapter);
}
}
});
编辑(2):我设法将显示 20 个项目的时间减少了 3 秒。我通过在查询后关闭与数据库的所有连接来实现这一点。我没有正确地做到这一点。正确方法:
cursor db.query(...)
try{
// Code
} finally {
cursor.close();
db.close();
}
编辑(3):除了编辑(2)的解决方案之外,我遇到的问题之一是图像问题。所以,我开始看它们,我看到了 2000x1800 和 300kb 甚至更大的图像,我很快发现问题就在这里。
因此,在 PHP 网络服务中,我开发了一个函数来将图像大小调整为一半并将它们转换为 jpg。
function resize($filePath){
list($width, $height) = getimagesize($filePath);
$percent = 0.5;
$newwidth = $width * $percent;
$newheight = $height * $percent;
$thumb = imagecreatetruecolor($newwidth, $newheight);
$ext = pathinfo($filePath, PATHINFO_EXTENSION);
$source = null;
if($ext == "png"){
$source = imagecreatefrompng($filePath);
}else if($ext == "jpg" || $ext == "jpeg"){
$source = imagecreatefromjpeg($filePath);
}
// Resize
imagecopyresized($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
// Output
$temporary = "C:\\xampp\\htdocs\\MyExample\\images\\temporary\\" . basename($filePath);
imagejpeg($thumb, $temporary . ".jpg", 50);
ImageDestroy($thumb);
return $temporary . ".jpg";
}
使用这个解决方案,我减少了惊人的 1 秒加载 47 个项目的时间!!