String[] result = res.split("-TRENNER-");
for (int i = 0; i < result.length; i += 2) {
try {
SimpleChannel channel = new SimpleChannel(Integer
.parseInt(result[i]), result[i + 1]);
lists.add(channel);
} catch (NumberFormatException e) {
mLog.warning("Could not parse channel data!");
return null;