私はなんとかデータベースから文字列をフェッチし、その要素のいくつかを変数に格納して、アプリがデータベースと対話する回数を減らすことができました。ただし、データベースからフェッチされた最初の要素をリストに格納したかったのですが、文字列を新しいリストに解析するとエラーが発生し続けます。助けてください
//String fetched from the database
final String[] rec = split(myresult,seperator);
//loc is the first String to be parsed to a String..
//desc is the 2nd string to be parsed to a textarea
//coords 3rd string which contains coordinates..
String loc=rec[0];
final String desc=rec[1];
String coords=rec[2];
//ERROR IS GENERATED HERE!!!
listmboya=new List(loc);
//Separate the coordinates in the string...
String seperator2=",";
String [] coordinates=split(coords,seperator2);
String lat=coordinates[0];
String lot=coordinates[1];
//convert them to floats..
item1=Float.parseFloat(lat);
item2=Float.parseFloat(lot);