By cseguenot on Thursday, 11 October 2018
Posted in Office Tab
Replies 2
Likes 0
Views 8.1K
Votes 0
Hello,

When I save a document in Word, the asterisk near the tab title is still visible. I have to switch to another tab and go back to the first one for the asterisk to disapear.

I have Office 365 and Office Tab 13.10, but the issue exists from at least version 12.0 .
Hello,
Thanks for your feedback.
Sorry, we will fix this issue in next version.
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
In the MedListActivity, add the below code:
@Override
public void onResume(){
    if(viewPager != null && viewPager.getAdapter() != null) {
        viewPager.getAdapter().notifyDataSetChanged();
    }
}
It should refresh the tabs.
If this is not working, do the below:
Move the Adapter creation mechanism (I assume this is the data you want to display) to a separate method, which will be called in OnCreate. This will not change current behavior.
In the Fragment, override the onResume method and also call this new adapter-creating method.
Summing up our comments discussion, the final solution is adding the following method to the Fragment code:
@Override 
public void onResume() { 
    super.onResume(); 
    // Here we call the data setup methods again, to reflect 
    // the changes which took place then the Fragment was paused
    initializeData(); 
    initializeAdapterpassed(); 
    initializeAdapterup(); 
}
·
3 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post