Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need your help! 3 pages of purple links on Google and I'm stuck on such a simple task! What I'm trying to do is get an ArrayList of type HashMap that contains mutiple HashMaps and display them using a ListAdapter. I'm getting the information from an SQL DB, I know this is possible but I can't see what I'm doing wrong, the list just shows up blank.

public class History extends ListActivity {

    ArrayList<HashMap<String, String>> inboxList;
    HashMap<String, String> dealList;
    ListView lv;
    AddSQL entry;
    Button bRefresh;

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.history);

        entry = new AddSQL(History.this);
        inboxList = new ArrayList<HashMap<String, String>>();


        ListAdapter adapter = new SimpleAdapter(History.this, inboxList, R.layout.history_list, new String[] { SEX, NAME, RATING, DATE },
                new int[] { R.id.sex, R.id.name, R.id.rating, R.id.date });
        inboxList = entry.getAllEntrys();
        setListAdapter(adapter);

    }

/** This is my SQL */

public ArrayList<HashMap<String, String>> getAllEntrys(){
    Log.d("Select", "Get");

    String s = "";
    String n = "";
    String r = "";
    String d = "";

    String select = "SELECT sex, name, rating, date FROM " + MAIN_TABLE;

    ArrayList<HashMap<String, String>> inboxList = new ArrayList<HashMap<String, String>>();
    Log.d("Select", "1");
    try{
        open();
        Cursor mCursor = database.rawQuery(select, null);
        while(mCursor.moveToNext()){

            HashMap<String, String> dealList = new HashMap<String, String>();
            s = mCursor.getString(mCursor.getColumnIndex(SEX)); 
            n = mCursor.getString(mCursor.getColumnIndex(NAME));
            r = mCursor.getString(mCursor.getColumnIndex(RATING));
            d = mCursor.getString(mCursor.getColumnIndex(DATE));

            dealList.put(SEX, s);
            dealList.put(NAME, n);
            dealList.put(RATING, r);
            dealList.put(DATE, d);
            inboxList.add(dealList);
        } 
        return null;    
    }catch (Exception e){
        Log.e("Sort By List", "ERROR: " + e);
        e.printStackTrace();
    }
    return null;
}
share|improve this question

1 Answer

Your getAllEntrys always returns null, should be inboxList in the try block.

share|improve this answer
Hi thanks for such a quick response. Sorry but I don't understand what you mean, why would it return null? – James Sep 8 '12 at 23:49
I just realised what I have been doing, returning null! Derp! – James Sep 8 '12 at 23:54

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.