Merge "Refresh the dashboard UI when swiping away the only suggestion." into oc-dr1-dev am: ee947e9a31

am: 11a93be4a7

Change-Id: Ib7b082644764d0dd43d29417f5076e99b37e856f
This commit is contained in:
Doris Ling
2017-06-22 01:43:56 +00:00
committed by android-build-merger
3 changed files with 45 additions and 1 deletions

View File

@@ -264,6 +264,19 @@ public class DashboardAdapter extends RecyclerView.Adapter<DashboardAdapter.Dash
notifyDashboardDataChanged(prevData);
}
public void onSuggestionDismissed() {
final List<Tile> suggestions = mDashboardData.getSuggestions();
if (suggestions != null && suggestions.size() == 1) {
// The only suggestion is dismissed, and the the empty suggestion container will
// remain as the dashboard item. Need to refresh the dashboard list.
final DashboardData prevData = mDashboardData;
mDashboardData = new DashboardData.Builder(prevData)
.setSuggestions(null)
.build();
notifyDashboardDataChanged(prevData);
}
}
@Override
public void notifySummaryChanged(Tile tile) {
final int position = mDashboardData.getPositionByTile(tile);
@@ -445,7 +458,8 @@ public class DashboardAdapter extends RecyclerView.Adapter<DashboardAdapter.Dash
return (Tile) getItem(getItemId(position));
}
private void notifyDashboardDataChanged(DashboardData prevData) {
@VisibleForTesting
void notifyDashboardDataChanged(DashboardData prevData) {
if (mFirstFrameDrawn && prevData != null) {
final DiffUtil.DiffResult diffResult = DiffUtil.calculateDiff(new DashboardData
.ItemsDataDiffCallback(prevData.getItemList(), mDashboardData.getItemList()));