// Create an array to specify the fields we want to display in the list (only TITLE)
    String[] from = new String[]{Users._ID, Users.USER_NAME, Users.USER_ID}; // and an array of the fields we want to bind those fields to (in this case just text1)
    int[] to = new int[]{R.id.userRowID, R.id.meterUserName, R.id.meterUserID}; // Now create a simple cursor adapter and set it to display
    SimpleCursorAdapter notes = 
            new SimpleCursorAdapter(this, R.layout.user_row, mUserCursor, from, to);
    setListAdapter(notes);
现在想实现根据数据库表里的一列,假设是Users.READ_FLAG来判断
若Users.READ_FLAG = true,则这一行设置图标R.drawable.img1
若Users.READ_FLAG = false,则这一行设置图标R.drawable.img2
这个要怎么实现,求教!