FileDocCategorySizeDatePackage
RemoteInput.javaAPI DocAndroid 5.1 API2105Sat Mar 14 14:09:40 GMT 2015android.app

RemoteInput.java

package android.app;
public final class RemoteInput
  implements android.os.Parcelable
{
public static final class Builder
{
public  Builder(java.lang.String resultKey) { throw new RuntimeException("Stub!"); }
public  android.app.RemoteInput.Builder setLabel(java.lang.CharSequence label) { throw new RuntimeException("Stub!"); }
public  android.app.RemoteInput.Builder setChoices(java.lang.CharSequence[] choices) { throw new RuntimeException("Stub!"); }
public  android.app.RemoteInput.Builder setAllowFreeFormInput(boolean allowFreeFormInput) { throw new RuntimeException("Stub!"); }
public  android.app.RemoteInput.Builder addExtras(android.os.Bundle extras) { throw new RuntimeException("Stub!"); }
public  android.os.Bundle getExtras() { throw new RuntimeException("Stub!"); }
public  android.app.RemoteInput build() { throw new RuntimeException("Stub!"); }
}
RemoteInput() { throw new RuntimeException("Stub!"); }
public  java.lang.String getResultKey() { throw new RuntimeException("Stub!"); }
public  java.lang.CharSequence getLabel() { throw new RuntimeException("Stub!"); }
public  java.lang.CharSequence[] getChoices() { throw new RuntimeException("Stub!"); }
public  boolean getAllowFreeFormInput() { throw new RuntimeException("Stub!"); }
public  android.os.Bundle getExtras() { throw new RuntimeException("Stub!"); }
public static  android.os.Bundle getResultsFromIntent(android.content.Intent intent) { throw new RuntimeException("Stub!"); }
public static  void addResultsToIntent(android.app.RemoteInput[] remoteInputs, android.content.Intent intent, android.os.Bundle results) { throw new RuntimeException("Stub!"); }
public  int describeContents() { throw new RuntimeException("Stub!"); }
public  void writeToParcel(android.os.Parcel out, int flags) { throw new RuntimeException("Stub!"); }
public static final android.os.Parcelable.Creator<android.app.RemoteInput> CREATOR;
public static final java.lang.String EXTRA_RESULTS_DATA = "android.remoteinput.resultsData";
public static final java.lang.String RESULTS_CLIP_LABEL = "android.remoteinput.results";
static { CREATOR = null; }
}