I created an arraylist for Integer values.
List<Integer> xpos = new ArrayList<Integer>();
adding the integers to the arraylist as follows
int bt_x=10;
xpos.add(bt_x);
Now how to remove single value ie. how to remove an integer from the arraylist. We can remove string arraylist with arraylist.get(i).remove. but how to remove the integer arraylist.