List<String> stringList = new ArrayList<String>();
... //befüllen der Liste
for(int i = length - 1; i > -1; i--)
if (str.get(i).equals("hallo"))
stringList.remove(i);
List<String> stringList = new ArrayList<String>();
... //befüllen der Liste
for(int i = length - 1; i > -1; i--)
if (str.get(i).equals("hallo"))
stringList.remove(i);