Skip to content

Instantly share code, notes, and snippets.

@JustinAngel
Created May 28, 2015 19:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JustinAngel/8dcc9bf9c7f0d7705c14 to your computer and use it in GitHub Desktop.
Save JustinAngel/8dcc9bf9c7f0d7705c14 to your computer and use it in GitHub Desktop.
Android M: Android Auto notifications
public static class android.app.Notification$Builder extends Object {
public Notification$Builder setLargeIcon(Icon);
public Notification$Builder setSmallIcon(Icon);
}
public static final class android.app.Notification$CarExtender extends Object implements Notification$Extender {
public Notification$CarExtender();
public Notification$CarExtender(Notification);
public Notification$CarExtender setColor(int);
public int getColor();
public Notification$Builder extend(Notification$Builder);
public Notification$CarExtender setLargeIcon(Bitmap);
public Bitmap getLargeIcon();
public Notification$CarExtender$UnreadConversation getUnreadConversation();
public Notification$CarExtender setUnreadConversation(Notification$CarExtender$UnreadConversation);
}
public static class android.app.Notification$CarExtender$Builder extends Object {
public Notification$CarExtender$Builder(String);
public Notification$CarExtender$UnreadConversation build();
public Notification$CarExtender$Builder addMessage(String);
public Notification$CarExtender$Builder setReadPendingIntent(PendingIntent);
public Notification$CarExtender$Builder setLatestTimestamp(long);
public Notification$CarExtender$Builder setReplyAction(PendingIntent, RemoteInput);
}
public static class android.app.Notification$CarExtender$UnreadConversation extends Object {
Notification$CarExtender$UnreadConversation();
public String getParticipant();
public long getLatestTimestamp();
public RemoteInput getRemoteInput();
public PendingIntent getReadPendingIntent();
public PendingIntent getReplyPendingIntent();
public String[] getParticipants();
public String[] getMessages();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment