Updating the systemUI lib

Change-Id: Ie945325ea5c436188c79a8f79082d5098357de6d
This commit is contained in:
Sunny Goyal
2017-11-03 11:16:53 -07:00
parent 73133391e5
commit 416fc0b328
2 changed files with 2 additions and 1 deletions
@@ -17,6 +17,7 @@ package com.android.quickstep;
import android.app.ListActivity;
import android.os.Bundle;
import android.os.UserHandle;
import android.support.annotation.Nullable;
import android.widget.ArrayAdapter;
@@ -36,7 +37,7 @@ public class RecentsActivity extends ListActivity {
super.onCreate(savedInstanceState);
RecentsTaskLoadPlan plan = new RecentsTaskLoadPlan(this);
plan.preloadPlan(new RecentsTaskLoader(this, 1, 1, 0), -1);
plan.preloadPlan(new RecentsTaskLoader(this, 1, 1, 0), -1, UserHandle.myUserId());
mAdapter = new ArrayAdapter<>(this, android.R.layout.simple_list_item_1);
mAdapter.addAll(plan.getTaskStack().getStackTasks());