I am new to android and I've been trying to create a ListView example application, in which I've added items to Arraylist....
list.add("Item1");
list.add("Item2");
list.add("Item3");
.......
Is there any way in android to avoid typing "List" every Time....? I know there is something ,But I couldn't find out what the keyword is..
in VB I could write
with list
.add("Item1");
.add("Item2");
Thanks in adavance