Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using loopj's json library, and I want to download some items and add them to a ListView. I did something like this:

static final String API_URL = "http://lbpnews.gram.pl/api.php";
    private AsyncHttpClient client = new AsyncHttpClient();
    private int id;
    private ListView listView;
    ArrayList<NewsListItem> newsList = new ArrayList<NewsListItem>();
    private NewsListViewAdapter adapter;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.news_list);
        listView = (ListView)findViewById(R.id.nlv_listview);
        RequestParams params = new RequestParams("mode", "news");
        params.put("len", "min");
        for(int i = 0; i < 20; i++){
            final int fI = i;
            final int fId = id - i;
            params.put("readmore", String.valueOf(fId));
            client.get(API_URL, params, new JsonHttpResponseHandler(){
                @Override
                public void onSuccess(JSONObject object) {
                    try {
                        NewsListItem item = new NewsListItem(fId, object.getString("title"), object.getString("content"));
                        newsList.add(fI, item);
                    } catch (JSONException e) {
                        e.printStackTrace();
                    }
                }
            });
        }
        adapter = new NewsListViewAdapter(this, newsList);
        listView.setAdapter(adapter);
    }

and the app crashes on start, before any data is loaded. I tried doing it before, in a similar way and not all the NewsListItems were on the list (i bet that's because the data is downloaded asynchronously and the arraylist is adapted before all the data is downloaded).

How can I create a ListView like this?

NewsListItem.java:

public class NewsListItem implements Comparable<NewsListItem>{
    private Integer id;
    private String title, content;
    public NewsListItem(int id, String title, String content){
        this.id = id;
        this.title = title;
        this.content = content;
    }

    @Override
    public String toString() {
        return "Id: " + id + ", title: " + title;
    }

    @Override
    public int compareTo(NewsListItem newsListItem) {
        return id.compareTo(newsListItem.id);
    }
    public int getId(){
        return id;
    }
    public String getTitle(){
        return title;
    }
    public String getContent(){
        return content;
    }

}

NewsListViewAdapter.java:

public class NewsListViewAdapter extends BaseAdapter {
    private Activity activity;
    private ArrayList<NewsListItem> data;
    private static LayoutInflater inflater = null;

    public NewsListViewAdapter(Activity activity, ArrayList<NewsListItem> data){
        Log.d("Butt", "Konstruktor adaptera");
        this.activity = activity;
        this.data = data;
        inflater = (LayoutInflater) this.activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    }

    public int getCount() {
        return data.size();
    }
    public Object getItem(int position) {
        return data.get(position);
    }
    public long getItemId(int position) {
        return position;
    }

    public View getView(int position, View convertView, ViewGroup parent){
        View view = convertView;
        if(convertView == null)
            view = inflater.inflate(R.layout.news_list_row, null);
        TextView title = (TextView)view.findViewById(R.id.nlv_row_title);
        TextView content = (TextView)view.findViewById(R.id.nlv_row_content);

        NewsListItem newsItem;
        newsItem = data.get(position);

        title.setText(Html.fromHtml(newsItem.getTitle()));
        content.setText(Html.fromHtml(newsItem.getContent()));
        return view;
    }
}

Logcat:

12-30 17:37:30.414: WARN/dalvikvm(4195): threadid=1: thread exiting with uncaught exception (group=0x40a9a300)
12-30 17:37:30.421: ERROR/AndroidRuntime(4195): FATAL EXCEPTION: main
    java.lang.IndexOutOfBoundsException: Invalid index -5, size is 0
    at java.util.ArrayList.throwIndexOutOfBoundsException(ArrayList.java:251)
    at java.util.ArrayList.add(ArrayList.java:143)
    at pl.gram.lbpnews.android.HomeActivity$1.onSuccess(HomeActivity.java:34)
    at com.loopj.android.http.JsonHttpResponseHandler.handleSuccessJsonMessage(JsonHttpResponseHandler.java:100)
    at com.loopj.android.http.JsonHttpResponseHandler.handleMessage(JsonHttpResponseHandler.java:91)
    at com.loopj.android.http.AsyncHttpResponseHandler$1.handleMessage(AsyncHttpResponseHandler.java:85)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:137)
    at android.app.ActivityThread.main(ActivityThread.java:4931)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:511)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:791)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:558)
    at dalvik.system.NativeStart.main(Native Method)
12-30 17:37:30.476: INFO/ActivityManager(326): Displayed pl.gram.lbpnews.android/.HomeActivity: +1s413ms
12-30 17:37:30.496: WARN/ActivityManager(326): Force finishing activity pl.gram.lbpnews.android/.HomeActivity
share|improve this question
Post your logcat. – mango Dec 30 '12 at 1:26
Logcat added at the end. – user1927425 Dec 30 '12 at 16:43

1 Answer

i can't understand why you're getting the error that you're getting but assuming that

newsList.add(fI, item);

is line 34 of the HomeActivity class, try replacing it with:

newsList.add(item);

If you absolutely need the items at specific indexes, you could try using a HashMap instead to specify and retrieve via keys.

share|improve this answer
I want to sort them using their ids, i know i could sort the linkedlist after all the items are loaded if i create a custom comparator (or override the compareTo method of NewsListItem) but the worst thing is that... the list isn't filled with these 20 items when the adapter is created - the data is downloaded asynchronously... – user1927425 Jan 3 at 18:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.