Android custom layout

后端 未结 4 1835
Happy的楠姐
Happy的楠姐 2020-12-14 00:51

I spent sometime yesterday struggling with android layouts (... or better custom layouts). For general purposes forms the out of the box layouts that androids offers are mor

4条回答
  •  春和景丽
    2020-12-14 01:51

    The available documentation on custom layouts seems rather vague to me, but I finally found something useful: Here is a nice simple sample layout that shows how to connect XML and Java code: How to layout a 'grid' of images in the center of the screen And here is a post which explains one key issue I was missing: http://www.arpitonline.com/blog/2012/07/01/creating-custom-layouts-for-android/. Apparently one has to override onMeasure and call measure() for each child.

提交回复
热议问题