5 つの JSONarray を arraylist に追加しようとしましたが、このエラーが発生しました
The method add(AllMessageObject) in the type ArrayList<AllMessageObject> is not applicable for the arguments (String)
ここでは、jsonarray を arraylist.how に追加して修正するコードを配置しています。
for (int j = 0; j < a; j++) {
listdata = new ArrayList<AllMessageObject>();
listdata.add(jsonArray.get(j).toString());
}
AllMessageObject はクラスです。ここにあるのはそのクラスのコードです。また、listdata は配列リストですArrayList<AllMessageObject> listdata = null;
。このコードで十分であることを願っています。さらに必要な場合は、ここで提供します。
public class AllMessageObject {
// for getting comment
public String message;
public String from_name;
public String message_date;
// for getting picture
public String picture_url;
public Bitmap picturein_bitmap;
// for getting my profile image
public String fromprofile_url;
//public Bitmap fromprofileurl_bitmap;
public String getFromprofile_url() {
return fromprofile_url;
}
public void setFromprofile_url(String fromprofile_url) {
this.fromprofile_url = fromprofile_url;
}
/*public Bitmap getFromprofileurl_bitmap() {
return fromprofileurl_bitmap;
}
public void setFromprofileurl_bitmap(Bitmap fromprofileurl_bitmap) {
this.fromprofileurl_bitmap = fromprofileurl_bitmap;
}*/
public Bitmap getPicturein_bitmap() {
return picturein_bitmap;
}
public void setPicturein_bitmap(Bitmap picturein_bitmap) {
this.picturein_bitmap = picturein_bitmap;
}
public String getPicture_url() {
return picture_url;
}
public void setPicture_url(String picture_url) {
this.picture_url = picture_url;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public String getFrom_name() {
return from_name;
}
public void setFrom_name(String from_name) {
this.from_name = from_name;
}
public String getMessage_date() {
return message_date;
}
public void setMessage_date(String message_date) {
this.message_date = message_date;
}
}