Android : can notifyDataSetChanged called without add,delete methods

on Monday, August 18, 2014


I want inform user that already visited by changing color of ListView item.


I am using following code in second activity that display webview.



@Override
public void onBackPressed() {
super.onBackPressed();

int position=100;
position=getIntent().getExtras().getInt("position");
NewsListAdapter newsListAdapter=new NewsListAdapter();
Constants.sVisited=position;
newsListAdapter.notifyDataSetChanged();

}

0 comments:

Post a Comment