HomeSort by relevance Sort by last modified time
    Searched defs:CellBuilder (Results 1 - 5 of 5) sorted by null

  /frameworks/support/slices/builders/src/main/java/androidx/slice/builders/impl/
GridRowBuilder.java 36 * Create an TemplateBuilderImpl that implements {@link CellBuilder}.
41 * Create an TemplateBuilderImpl that implements {@link CellBuilder} with the specified Uri.
84 interface CellBuilder {
GridRowBuilderBasicImpl.java 48 return new CellBuilder(this);
55 return new CellBuilder(uri);
98 public static final class CellBuilder extends TemplateBuilderImpl implements
99 GridRowBuilder.CellBuilder {
103 public CellBuilder(@NonNull GridRowBuilderBasicImpl parent) {
109 public CellBuilder(@NonNull Uri uri) {
GridRowBuilderListV1Impl.java 72 return new CellBuilder(this);
79 return new CellBuilder(uri);
125 public static final class CellBuilder extends TemplateBuilderImpl implements
126 GridRowBuilder.CellBuilder {
132 public CellBuilder(@NonNull GridRowBuilderListV1Impl parent) {
138 public CellBuilder(@NonNull Uri uri) {
  /frameworks/support/slices/builders/src/main/java/androidx/slice/builders/
GridBuilder.java 38 * details see {@link CellBuilder}.
87 public GridBuilder addCell(@NonNull CellBuilder builder) {
96 public GridBuilder addCell(@NonNull Consumer<CellBuilder> c) {
97 CellBuilder b = new CellBuilder(this);
109 * {@link CellBuilder#setContentIntent(PendingIntent)} specified to take the user to an
118 public GridBuilder addSeeMoreCell(@NonNull CellBuilder builder) {
135 * {@link CellBuilder#setContentIntent(PendingIntent)} specified to take the user to an
144 public GridBuilder addSeeMoreCell(@NonNull Consumer<CellBuilder> c) {
145 CellBuilder b = new CellBuilder(this)
    [all...]
GridRowBuilder.java 36 * contain a combination of text and images and is constructed using a {@link CellBuilder}.
59 * {@link CellBuilder#addTitleText(CharSequence)} or the first text added if no title was
91 public GridRowBuilder addCell(@NonNull CellBuilder builder) {
100 public GridRowBuilder addCell(@NonNull Consumer<CellBuilder> c) {
101 CellBuilder b = new CellBuilder(this);
113 * {@link CellBuilder#setContentIntent(PendingIntent)} specified to take the user to an
122 public GridRowBuilder setSeeMoreCell(@NonNull CellBuilder builder) {
139 * {@link CellBuilder#setContentIntent(PendingIntent)} specified to take the user to an
148 public GridRowBuilder setSeeMoreCell(@NonNull Consumer<CellBuilder> c)
    [all...]

Completed in 688 milliseconds