First, I'm really a beginner in Android, so apologies if my question is a simple RTFM.
I'm trying to do a circular graphical layout (with multiple ImageViews rotated around a center, each having the same drawable, for now), and I'm wondering what is the most efficient way to do it. I have looked into it, and the documentation in Android is surprisingly sparse.
Right now, I'm using the rotation, translationX and translationY for ImageViews inside a FrameLayout in XML, but it doesn't scale well when you test it on different devices. I could make a different layout file for each device, but honestly that's a pain.
- Is there a way I can make the entire layout scale automatically? What I mean by that is, if I define the correct translation, rotations and scales for each element inside it, could the entire
FrameLayoutfill the screen "magically"? - Can I do off-center rotations in my layout? Say, translate by the radius of the circle and rotate around the center of the circle, not the center of the object? Or any other chain of transformations, for that matter?
- If using XML layouts is impossible, and if I have to do that in code (which I'd like to avoid), what's the best location to do that? I would do that in the
onCreatemethod, but maybe there's a better way?
Note that I do not want to create animations, I only want a static layout.