I have a ListView. I need to add items on listView on a condition(true). I have tried to clear adapter and then add true items.And also tried to remove the false items. But it seems I'm missing something. Help me to find what am I missing.

here is main activity

protected void onCreate(Bundle savedInstanceState)
{

    super.onCreate(savedInstanceState);
    setContentView(R.layout.favorite_tab);

    list = (ListView) findViewById(R.id.listView1);
    mAdapter = new FavoriteListAdapter(this);

    list.setAdapter(mAdapter);
    getFavoriteChapt();
    list.setOnItemClickListener(this);

}

public void getFavoriteChapt()
{
    mAdapter.clear();
    for (int i = 0; i < 17; i++)
    {
        if (DataStore.getHierarchicalChapters().getSubChapters().get(i)
                .isFavorite() == true)
            mAdapter.add(DataStore.getHierarchicalChapters()
                    .getSubChapters().get(i));
    }
    mAdapter.notifyDataSetChanged();
}

And my CustomAdapter

    @Override
public View getView(int position, View convertView, ViewGroup parent)
{

    View row = convertView;

    if (row == null)
    {
        LayoutInflater inflater = (LayoutInflater) context
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        row = inflater.inflate(R.layout.favorite_tab_list_view_row, parent,
                false);
        ViewHolder viewHolder = new ViewHolder();
        viewHolder.text_view_sura_name = (TextView) row
                .findViewById(R.id.searchChapterTextViewId);

        row.setTag(viewHolder);
    }
    ViewHolder viewHolder = (ViewHolder) row.getTag();

    viewHolder.text_view_sura_name.setText(Integer.toString(position)
            + DataStore.getHierarchicalChapters().getSubChapters()
                    .get(position).getTitle());

    return row;
}
link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Here is my geFavoriteChapters

private ArrayList<Chapter> getFavortiveChapters()
{
    ArrayList<Chapter> chapter = new ArrayList<Chapter>();

    for (int i = 0; i < 17; i++)
    {
        if (DataStore.getHierarchicalChapters().getSubChapters().get(i)
                .isFavorite())
            chapter.add(DataStore.getHierarchicalChapters()
                    .getSubChapters().get(i));          
    }
    return chapter;
}

and the View

viewHolder.chapterName.setText(getFavoriveChapters().get(position).getTitle());

and the Problem solved :)

link|improve this answer
feedback

I am not clear with your problem.Write your problem clearly.

link|improve this answer
MyCustom adapter returns a adapter with all the Chapter I have. I need to check if the chapter is favorite or not. So I need to remove non favorite chapter from the adapter. For that I've tried the above code. – ashish Feb 13 at 14:41
create separate Array(flags_array) for flags for all chapters.store 'true' if the chapter is 'favorite' else store 'false' in flags_array.In "getFavoriteChapt()" mehod compare this flags.If the flag is 'true' add the item, else 'remove the item if it exist otherwise dont add item. – Venkata Krishna Feb 13 at 14:49
Problem solved. Thank you :) – ashish Feb 13 at 15:06
feedback

Your Answer

 
or
required, but never shown

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