如何在android中制作像flipkart一样的过滤器选项卡?

时间:2015-11-30 10:02:17

标签: android android-layout android-listview filter

我正在构建一个Android应用程序。我需要实现像Flipkart Filter菜单样式的选项卡列表。下面是我希望在我的应用程序中实现的图像。

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以在LinerLayout中水平使用两个列表视图,并根据需要自定义列表视图。

希望它有用..

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_marginLeft="5dp"
    android:layout_marginRight="5dp"
    android:layout_marginTop="5dp"
    android:orientation="horizontal"
    android:weightSum="3">

    <!--  this list contains products -->
    <ListView
        android:id="@+id/list1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="5dip"
        android:layout_weight="2"
        android:fadingEdge="vertical"
        android:scrollbars="none"
        android:smoothScrollbar="true"
        android:soundEffectsEnabled="true" />

    <ListView
        android:id="@+id/list2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_margin="5dip"
        android:layout_weight="1"
        android:dividerHeight="1px"
        android:drawSelectorOnTop="false"
        android:fadingEdge="vertical"
        android:padding="0dip"
        android:scrollbars="none"
        android:smoothScrollbar="true"/>

</LinearLayout>