Android:自定义 FlowLayout

Android: Custom FlowLayout

我想在 android 中制作 this 种标签菜单。动态填充布局并居中对齐。
我该怎么做?

使用@Dory 推荐的库编辑

<FlowLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:f="http://schemas.android.com/apk/res-auto"
    android:orientation="horizontal"
    f:debugDraw="false"
    f:weightDefault="0"
    f:layoutDirection="ltr"
    android:gravity="center"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="6dip"
    android:paddingTop="6dip"
    android:paddingRight="12dip"
    android:paddingBottom="12dip"
    android:background="@android:color/black"
    android:id="@+id/l_flow"/>



   <Button xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_marginBottom="3dp"/>

Flowlayout 在一个 xml 文件中按钮在另一个 xml 文件中。然后我给 Button 充气 fLayout.addView(button);

what I get is this 视图之间的顶部和底部填充高于预期

看看 here, you can use this 图书馆

编辑:

提供了属性,您可以在其中设置 horizontalverticalFlow Layout 的间距。请参阅下面的示例 xml :

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    
xmlns:f="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">   
    <FlowLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    f:horizontalSpacing="5dp"
    f:verticalSpacing="5dp" />  
</RelativeLayout>       

编码愉快:)

最后我在 this 库的帮助下完成了。我只使用了 class FlowLayout 和 attr.xml 我的 main.xml 看起来像这样:

    <com.example.FlowTest.FlowLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/flow"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:background="@android:color/white"/>

我的项目布局如下所示:

<Button xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"  
    android:layout_gravity="center_horizontal"
    android:padding="5dp"/>

并且在我的 Activity 的 onCreate 方法中:

LayoutInflater mInflater = LayoutInflater.from(this);
    mFlowLayout = (FlowLayout) findViewById(R.id.flow);

    String [] names = {"goods", "shops", "cars", "washing machine","blablabla","clothes","books"};

    for(int i = 0; i<names.length;i++){
        Button b = (Button)mInflater.inflate(R.layout.item_flow,mFlowLayout, false);
        b.setText(names[i]);
        mFlowLayout.addView(b);
    }