Reputation: 35
I'm currently working on a game that has buttons changing positions. I was wondering how I could change the buttons position in a GridLayout via java code
Upvotes: 0
Views: 56
Reputation: 1057
Why don't you just simply change the X and Y.
Button myButton = (Button) findViewById(R.id.YourButtonIDInXML);
myButton.setX(<x value>);
myButton.setY(<y value>);
Upvotes: 2