static void onStartScreenPinning(Context context) {
   // For the primary user, the context for the SystemUI component is the SystemUIApplication
   SystemUIApplication app = (SystemUIApplication) getInstanceAndStartIfNeeded(context).mContext;
   PhoneStatusBar statusBar = app.getComponent(PhoneStatusBar.class);
   if (statusBar != null) {
     statusBar.showScreenPinningRequest(false);
   }
 }