RemoteInput.addResultsToIntent(fromCompat(remoteInputs), intent, results);
if (srcArray == null) { return null; } RemoteInput[] result = new RemoteInput[srcArray.length]; for (int i = 0; i < srcArray.length; i++) { RemoteInputCompatBase.RemoteInput src = srcArray[i]; result[i] = new RemoteInput.Builder(src.getResultKey()) .setLabel(src.getLabel()) .setChoices(src.getChoices()) .setAllowFreeFormInput(src.getAllowFreeFormInput()) .addExtras(src.getExtras()) .build(); } return result;
return RemoteInput.getResultsFromIntent(intent);
if (srcArray == null) { return null; } RemoteInputCompatBase.RemoteInput[] result = factory.newArray(srcArray.length); for (int i = 0; i < srcArray.length; i++) { RemoteInput src = srcArray[i]; result[i] = factory.build(src.getResultKey(), src.getLabel(), src.getChoices(), src.getAllowFreeFormInput(), src.getExtras()); } return result;