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

I am working on one app and I have one list view in one screen in that i am passing values using class. On listview's item click event it opens activity for selecting values. and i m saving this value to the SharedPrefrence as i wanted these data to the another activity. It stores value to the SharedPreference. But it doesnt update listview on returning to the activity. But I am getting updated List onCreate().

try{
            selectedParentMessage = ParentMessageListActivity.parentMsgSharedPref.getString("SelectedParentMessage", "None");

            System.out.println("Selected Parent Message:"+selectedParentMessage);

        }catch (Exception e) {
            // TODO: handle exception
            e.printStackTrace();

        }

        items.add(new Setting_ActivitySectionItem("Sounds"));
        //items.add(new Setting_ActivityEntryItem("Cartoon's Voice", ""));
        items.add(new Setting_ActivityEntryItem("Record Parent's Message", ""+selectedParentMessage));
        items.add(new Setting_ActivityEntryItem("Import Lullaby", ""));


        items.add(new Setting_ActivitySectionItem("Alerts"));
        items.add(new Setting_ActivityEntryItem("Phone Number", ""));
        items.add(new Setting_ActivityEntryItem("Email Id", ""));
        items.add(new Setting_ActivityEntryItem("Send Notification", ""));
        //items.add(new EntryItem("Item 7", "This is item 2.4"));

        items.add(new Setting_ActivitySectionItem("Baby's Noise Level"));
        items.add(new Setting_ActivityEntryItem("High", ""));
        items.add(new Setting_ActivityEntryItem("Medium", ""));
        items.add(new Setting_ActivityEntryItem("Low", ""));
        //items.add(new EntryItem("Item 11", "This is item 3.4"));
        //items.add(new EntryItem("Item 12", "This is item 3.5"));

        items.add(new Setting_ActivitySectionItem("Set Auto-silent"));
        items.add(new Setting_ActivityEntryItem("Auto Silent", ""));

        items.add(new Setting_ActivitySectionItem("Set Battery reminder"));
        items.add(new Setting_ActivityEntryItem("Battery Reminder", ""));

        adapter = new Setting_ActivityEntryAdapter(this, items);
        adapter.notifyDataSetChanged();
        setListAdapter(adapter);

and also i am applying notifydatasetchange() on onResume and onRestart()

public void onRestart(){
        super.onRestart();
        System.out.println("onrestart");
        try{
            selectedParentMessage = ParentMessageListActivity.parentMsgSharedPref.getString("SelectedParentMessage", "None");

            System.out.println("Selected Parent Message:"+selectedParentMessage);

        }catch (Exception e) {
            // TODO: handle exception
            e.printStackTrace();

        }
        getListView().invalidateViews();
        adapter.notifyDataSetChanged();
    }

and same for onPause()

share|improve this question
Are you re-reading your preferences in onResume()? – Phat7 Feb 14 at 7:01
yes. i m re-reading value. – Saurabh Feb 14 at 7:27
I didn't get you. What exactly is the requirement? – Harpreet Feb 15 at 9:53
i have Two activities. On First Activity i have custom listview its like "Title" and "value" and another is the one from which i store values to the sharedpreference and that sharedpreference value i want to show in 1st activitiy's listview when i return to that listview activity. I am getting value for "value" only on onCreate(). – Saurabh Feb 15 at 9:58
Will you please add the complete code in question, i can't see the SharedPreference and its usage in your code. – Harpreet Feb 15 at 10:41
show 2 more comments

4 Answers

up vote 1 down vote accepted

SOLVED

@Override
    public void onResume(){
    super.onResume();
        adapter.clear();
        addItem();
    }

addItem() is function which will add list items to the class and generate the adapter and set the listview.

share|improve this answer

call it yourlistView.invalidateViews();

Try this .

ListAdapter la = listView.getAdapter();
                        if( la != null){
                            ((BaseAdapter)la).notifyDataSetChanged();


                }
share|improve this answer
i have set this in onResume() but doesn't work. – Saurabh Feb 14 at 7:02
did you try notifydatasetchange in resume/start ? – Asad Iqbal Feb 14 at 7:04
yes, i tried in both method.. – Saurabh Feb 14 at 7:06
try my code above – Asad Iqbal Feb 14 at 7:09
i tried your code but doesn't work – Saurabh Feb 14 at 7:33

Do notifydatasetchange() for your adapter of listview in onStart()

share|improve this answer
not working for me.. – Saurabh Feb 14 at 7:03
Did you commit after you saving data in SharedPreference? – kumar_android Feb 14 at 7:09
yes, i m getting value on onCreate() – Saurabh Feb 14 at 7:25

How about creating a new instance of the adapter using the same variable you used in your adapter and set the adapter on the list again.

Try this on onResume:

adapter = new Setting_ActivityEntryAdapter(this, items);
setListAdapter(adapter);
share|improve this answer
sorry, i did not get your point – Saurabh Feb 14 at 7:28
I've added code on my previous post – mai Feb 14 at 9:10
i tried this as well but still not getting updated list – Saurabh Feb 15 at 9:26

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.