我不知道为什么,但是如果我创建一个子字符串,应用程序就会崩溃!
这是代码:
while(data_mio.moveToNext())
{
titolo_da_inserire=data_mio.getString(prodotto);
titolo_da_inserire=titolo_da_inserire.substring(0,35)+"...";
personList.add( new Prodotto_per_lista(
R.drawable.freccia_1, titolo_da_inserire,
Integer.parseInt(data_mio.getString(id_immagine)))
);
}