I’m recieving a Float Array from a Bundle like so…
Bundle b = this.getIntent().getExtras();
float camObjCoord[] = b.getFloatArray("tweets");
Sadly I’m not being allowed make the data public. It will only allow final.. what would be the best way around this?
Private classes inside of an activity can have access to private members of the parent class. So you need to make it a property of the class, not a local variable of the method.