再次,我呼吁你的智慧,因为我无法解决我的问题。我有一个带两个listView的抽屉。我需要所有视图的一般滚动,我可以做到这一点,但没有惯性效果。我哭了,因为我在这个问题上失去了三天。我尝试通过xml菜单和NavigationDrawer来创建这个案例,但这并没有帮助。我尝试将我的列表视图放在抽屉中的一个大根LISTVIEW中,但这很令人毛骨悚然。请帮我。我知道,带有listView的ScrollView是不好的解决方案,但我该怎么办?这是我的代码。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include layout="@layout/toolbar"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:scrollbars="none">
</include>
<LinearLayout
android:id="@+id/drawer_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@drawable/bg_gradient_vertical"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_common_margin"
android:paddingEnd="0dp"
android:paddingLeft="@dimen/activity_common_margin"
android:paddingRight="0dp"
android:paddingStart="@dimen/activity_common_margin"
android:paddingTop="@dimen/activity_common_margin">
<TextView
style="@style/drawerHeading"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/label_cabinet_list_view"
android:text="@string/drawer_personal_cabinet_header" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colorPrimary" />
<ListView
android:id="@+id/cabinet_list_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
android:layout_marginBottom="@dimen/activity_min_margin"
android:layout_marginLeft="@dimen/activity_common_margin"
android:layout_marginStart="@dimen/activity_common_margin"
android:layout_marginTop="@dimen/activity_min_margin"
android:divider="@color/colorAccentLight"
android:dividerHeight="1dp"
/>
<TextView
style="@style/drawerHeading"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/drawer_menu_header" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colorPrimary" />
<ListView
android:id="@+id/menu_list_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/activity_min_margin"
android:layout_marginLeft="@dimen/activity_common_margin"
android:layout_marginStart="@dimen/activity_common_margin"
android:layout_marginTop="@dimen/activity_min_margin"
android:scrollbars="none"
android:divider="@color/colorAccentLight"
android:dividerHeight="1dp" />
</LinearLayout>
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:0)
- 我找到了问题的答案。因为我的抽屉里没有多少东西 view-elements,我是ListView和RecycleView的拒绝,只是 将它们发布在ScrollView.Of当然,我不认为,这是一个 最好的解决方案,但其他我找不到。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include layout="@layout/toolbar"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:scrollbars="none">
</include>
<ScrollView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:scrollbars="none"
android:id="@+id/scroll_drawer">
<include layout="@layout/content_main"
android:layout_height="wrap_content"
android:layout_width="wrap_content">
</include>
</ScrollView>
</android.support.v4.widget.DrawerLayout>