I want to pass two values to another activity can I do this with putExtra or do I have to do it a more complicated way, which it seems from my reading. E.g.. can something l
No you can't but you can pass an array using:
public Intent putExtra (String name, String[] value)
like this for example:
i.putExtra(ID_EXTRA, new String[]{"1", "111"});