Loading core/java/android/app/SearchManager.java +3 −0 Original line number Diff line number Diff line Loading @@ -858,6 +858,9 @@ public class SearchManager */ public Intent getAssistIntent(Context context, int userHandle) { try { if (mService == null) { return null; } ComponentName comp = mService.getAssistIntent(userHandle); if (comp == null) { return null; Loading policy/src/com/android/internal/policy/impl/keyguard/KeyguardViewMediator.java +12 −0 Original line number Diff line number Diff line Loading @@ -22,6 +22,7 @@ import android.app.Activity; import android.app.ActivityManagerNative; import android.app.AlarmManager; import android.app.PendingIntent; import android.app.SearchManager; import android.app.StatusBarManager; import android.content.BroadcastReceiver; import android.content.ContentResolver; Loading Loading @@ -166,6 +167,9 @@ public class KeyguardViewMediator { /** UserManager for querying number of users */ private UserManager mUserManager; /** SearchManager for determining whether or not search assistant is available */ private SearchManager mSearchManager; /** * Used to keep the device awake while to ensure the keyguard finishes opening before * we sleep. Loading Loading @@ -527,6 +531,7 @@ public class KeyguardViewMediator { * Let us know that the system is ready after startup. */ public void onSystemReady() { mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE); synchronized (this) { if (DEBUG) Log.d(TAG, "onSystemReady"); mSystemReady = true; Loading Loading @@ -1313,6 +1318,9 @@ public class KeyguardViewMediator { // showing secure lockscreen; disable ticker. flags |= StatusBarManager.DISABLE_NOTIFICATION_TICKER; } if (!isAssistantAvailable()) { flags |= StatusBarManager.DISABLE_SEARCH; } } if (DEBUG) { Loading Loading @@ -1410,4 +1418,8 @@ public class KeyguardViewMediator { mKeyguardViewManager.showAssistant(); } private boolean isAssistantAvailable() { return mSearchManager != null && mSearchManager.getAssistIntent(mContext, UserHandle.USER_CURRENT) != null; } } Loading
core/java/android/app/SearchManager.java +3 −0 Original line number Diff line number Diff line Loading @@ -858,6 +858,9 @@ public class SearchManager */ public Intent getAssistIntent(Context context, int userHandle) { try { if (mService == null) { return null; } ComponentName comp = mService.getAssistIntent(userHandle); if (comp == null) { return null; Loading
policy/src/com/android/internal/policy/impl/keyguard/KeyguardViewMediator.java +12 −0 Original line number Diff line number Diff line Loading @@ -22,6 +22,7 @@ import android.app.Activity; import android.app.ActivityManagerNative; import android.app.AlarmManager; import android.app.PendingIntent; import android.app.SearchManager; import android.app.StatusBarManager; import android.content.BroadcastReceiver; import android.content.ContentResolver; Loading Loading @@ -166,6 +167,9 @@ public class KeyguardViewMediator { /** UserManager for querying number of users */ private UserManager mUserManager; /** SearchManager for determining whether or not search assistant is available */ private SearchManager mSearchManager; /** * Used to keep the device awake while to ensure the keyguard finishes opening before * we sleep. Loading Loading @@ -527,6 +531,7 @@ public class KeyguardViewMediator { * Let us know that the system is ready after startup. */ public void onSystemReady() { mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE); synchronized (this) { if (DEBUG) Log.d(TAG, "onSystemReady"); mSystemReady = true; Loading Loading @@ -1313,6 +1318,9 @@ public class KeyguardViewMediator { // showing secure lockscreen; disable ticker. flags |= StatusBarManager.DISABLE_NOTIFICATION_TICKER; } if (!isAssistantAvailable()) { flags |= StatusBarManager.DISABLE_SEARCH; } } if (DEBUG) { Loading Loading @@ -1410,4 +1418,8 @@ public class KeyguardViewMediator { mKeyguardViewManager.showAssistant(); } private boolean isAssistantAvailable() { return mSearchManager != null && mSearchManager.getAssistIntent(mContext, UserHandle.USER_CURRENT) != null; } }