我开始在Android的1.5版本上开发一个Android应用程序,按照一系列不同的书籍建议始终使你的应用程序向后兼容。这很好,直到我发现1.5不能处理多个屏幕支持,所以我遵循Android页面的指导方针来克服这一点,不得不转移到1.6,
这样做之后,当我在模拟器(1.6版本)中运行应用程序时,我发现在回到肖像时切换横向肖像(我有两种不同的布局),屏幕上的一些元素会移动。
我使用的布局类型是相对的。所以我认为我会尝试使用表格布局,但我正在努力工作。
我的基本布局如下:
(Left top of parent)EditText1 LargeTextView EditText2(right top of parent) radiobutton (underneath editText1) smallTextView (smalltextview) smallTextview radiobutton (under editext2) TextView (under edittext1) Textview (under editext2) Image1 Image2 Image3 Image4 Image5 Image6 Image7 Image8 (smaller images will build here via code) Animation (not big; just a spinning text)
这是上面的肖像版本,设计中的风景几乎相同
我是否更好地坚持相对布局或尝试并制定表格布局?