Tools for rapid layout/interface creations?

前端 未结 3 739
执笔经年
执笔经年 2021-01-05 02:18

Does anyone know of any tools (besides DroidDraw) that can help me create the basics of my projects a bit quicker? I\'m looking for something that will allow me to very quic

3条回答
  •  梦谈多话
    2021-01-05 03:05

    DroidDraw is OK, but the reality is that if you are going to write for Android you are going to want to learn how to write XML layouts from scratch. I remember that XML layouts seemed bizarre when I first started working with the Android SDK, but eventually it starts to make sense.

    I read a blog post from a member of the Android team at Google explaining why XML layouts are better than GUI-based layout systems (such as the one included with the iPhone SDK). I can't find the link right now, but basically XML allows for layouts that gracefully scale across devices of radically different sizes and purposes where a GUI-based layout designer often has to be tweaked at best and redone at worst for devices of different sizes.

提交回复
热议问题