我想在galaxy 4s上创建app以发送给群组联系人。 组联系人姓名显示在gridView中。问题是,当我添加新名称时,它们之间的距离是按列.i对于不同长度的名称,距离将更灵活,例如:
我的代码: main.xml中
<GridView
android:id="@+id/gridNames"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="bottom|center"
android:layout_weight="1"
android:gravity="right"
android:numColumns="auto_fit" >
</GridView>
row_grid.xml
<TextView
android:id="@+id/grid_rowName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/round_shape"
android:padding="3dp"
android:text="Anna 123"
android:textSize="17dp"
android:textStyle="bold" />
谢谢!