Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 790474ba authored by Chris Wren's avatar Chris Wren Committed by Android Git Automerger
Browse files

am f11e0e71: Merge "Add missing docs to notification style rebuilder functions." into jb-dev

* commit 'f11e0e71':
  Add missing docs to notification style rebuilder functions.
parents c82875e4 f11e0e71
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -1731,6 +1731,9 @@ public class Notification implements Parcelable
            return this;
        }

        /**
         * Provide the bitmap to be used as the payload for the BigPicture notification.
         */
        public BigPictureStyle bigPicture(Bitmap b) {
            mPicture = b;
            return this;
@@ -1809,6 +1812,10 @@ public class Notification implements Parcelable
            return this;
        }

        /**
         * Provide the longer text to be displayed in the big form of the
         * template in place of the content text.
         */
        public BigTextStyle bigText(CharSequence cs) {
            mBigText = cs;
            return this;
@@ -1889,6 +1896,9 @@ public class Notification implements Parcelable
            return this;
        }

        /**
         * Append a line to the digest section of the Inbox notification.
         */
        public InboxStyle addLine(CharSequence cs) {
            mTexts.add(cs);
            return this;