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

Commit f92eac81 authored by Wink Saville's avatar Wink Saville
Browse files

Add a new Item constructor for use by DSDS Stk.

Change-Id: Ie7d4113629b6cea521465a4a4d5d147707956fff
parent 013a66ce
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -34,9 +34,13 @@ public class Item implements Parcelable {
    public Bitmap icon;

    public Item(int id, String text) {
        this(id, text, null);
    }

    public Item(int id, String text, Bitmap icon) {
        this.id = id;
        this.text = text;
        this.icon = null;
        this.icon = icon;
    }

    public Item(Parcel in) {