I am using an ArrayList
within my code which gets populated by a EditText
field but I am wanting to limit the ArrayList
so it can only
ArrayList
doesn't have a way of limiting the size; you could extend it to include a limit:
public class FixedSizeLimitedArrayList extends ArrayList
Other options include: