Source code
package android.support.v4.app;
import android.app.RemoteInput.Builder;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.RemoteInputCompatBase.RemoteInput;
import android.support.v4.app.RemoteInputCompatBase.RemoteInput.Factory;
class RemoteInputCompatApi20 {
RemoteInputCompatApi20() {
}
static RemoteInput[] toCompat(android.app.RemoteInput[] srcArray, Factory factory) {
if (srcArray == null) {
return null;
}
RemoteInput[] result = factory.newArray(srcArray.length);
for (int i = 0; i < srcArray.length; i++) {
android.app.RemoteInput src = srcArray[i];
result[i] = factory.build(src.getResultKey(), src.getLabel(), src.getChoices(), src.getAllowFreeFormInput(), src.getExtras());
}
return result;
}
static android.app.RemoteInput[] fromCompat(RemoteInput[] srcArray) {
if (srcArray == null) {
return null;
}
android.app.RemoteInput[] result = new android.app.RemoteInput[srcArray.length];
for (int i = 0; i < srcArray.length; i++) {
RemoteInput src = srcArray[i];
result[i] = new Builder(src.getResultKey()).setLabel(src.getLabel()).setChoices(src.getChoices()).setAllowFreeFormInput(src.getAllowFreeFormInput()).addExtras(src.getExtras()).build();
}
return result;
}
static Bundle getResultsFromIntent(Intent intent) {
return android.app.RemoteInput.getResultsFromIntent(intent);
}
static void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) {
android.app.RemoteInput.addResultsToIntent(fromCompat(remoteInputs), intent, results);
}
}