我正在构建一个带导航抽屉的应用程序。
导航抽屉有两个列表视图和一个可展开的列表视图。
我希望整个滚动导航抽屉。
我的xml文件
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/drawer_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimaryDark"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />
<FrameLayout
android:id="@+id/frame_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/white"
android:elevation="16dp"
android:orientation="vertical">
<include layout="@layout/navigation_header" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:padding="10dp"
android:text="@string/popular_categories"
android:textColor="@color/grey"
android:textSize="20sp" />
<ListView
android:id="@+id/popular_categories_list"
android:layout_width="match_parent"
android:divider="@null"
android:nestedScrollingEnabled="false"
android:layout_height="wrap_content">
</ListView>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="?android:attr/listDivider" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:padding="10dp"
android:text="@string/all_categories"
android:textColor="@color/grey"
android:textSize="20sp" />
<ExpandableListView
android:id="@+id/expandable_listView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:childDivider="@color/white"
android:divider="@null"
android:groupIndicator="@drawable/group_indicator"
android:indicatorEnd="285dp"
android:indicatorStart="250dp"
android:paddingBottom="8dp"
android:paddingTop="8dp"
android:scrollbars="none" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="?android:attr/listDivider" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:padding="10dp"
android:text="@string/others"
android:textColor="@color/grey"
android:textSize="20sp" />
<ListView
android:id="@+id/other_list"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</ListView>
</LinearLayout>
</android.support.v4.widget.DrawerLayout>
listview本身不滚动。并且下面的视图保持隐藏。
我希望实现类似于flipkart app的抽屉。
提前致谢。
答案 0 :(得分:0)
按如下方式设计布局。 不需要多个列表视图和可扩展列表视图,您可以使用单个可扩展列表视图来处理它。
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".activity.HomeActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/actionbar"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<RelativeLayout
android:id="@+id/commoncontainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/app_bar_main"></RelativeLayout>
</android.support.design.widget.CoordinatorLayout>
<ExpandableListView
android:id="@+id/lvExp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@drawable/sidebar_bg"
android:cacheColorHint="@color/transparent"
android:choiceMode="singleChoice"
android:clickable="false"
android:divider="@null"
android:groupIndicator="@null"
android:listSelector="@android:color/transparent"
android:scrollbars="none"></ExpandableListView>
</android.support.v4.widget.DrawerLayout>