关于这个属性,官方有一段说明:
<!-- Omitting flex-flow property since it's reflected in the parent flex container. Set the flexDirection and/or flexWrap to the parent flex container explicitly if you want to use the flex-flow similar way to the web. -->
作用是控制元素在主轴上的对齐方式,需要配合flexDirection
或flexWrap
属性来使用。
看一下源码,可见app:justifyContent
属性有flex_start
、flex_end
、center
、space_between
、space_around
和space_evenly
6个枚举值。
下面把以上两个属性改为: