I'm working on a UI class for an app. The goal I'm trying to accomplish is to be able to at runtime create UI elements and add them to the layout. I then want to be able to size and move them manually (in code). For example I want to add a webview whose size is 234px by 450px and is placed at 32, 32.
Currently I'm using a relative layout and placing objects in it and then moving them around. I can move things fine by using view.setX() and view view.setY() but using the view.scaleX() and scaleY() doesn't work in the way that I want.
Should I be using a relative layout or is there another option.
I'm building for API 15