1

首先,我想为我的英语道歉,我来自俄罗斯,我希望谷歌翻译器能帮助我描述我的问题=)。所以问题是 - 我在 ScrollView 中有一个 gridView 和 ExpandableListView,我知道我不应该在 ScrollView 中放置一个可滚动的 View,但为了我的目标,我找不到替代方案。在我的项目中,我有一个包含类别的业务目录(如“电子”、“家庭和花园”、“汽车”等),我想做的就是将最流行的类别放入 gridView(并向它们添加图标)并制作滚动视图像单一布局一样滚动它。但是我的 scrollView 不会滚动它,我该怎么做?

我的 bizCatalog 活动:

在此处输入图像描述

我的 bizCatalog 布局:

<?xml version="1.0" encoding="utf-8"?>
<ViewSwitcher xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/bizSwitcher"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical" >

    <ProgressBar
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Загрузка списка..." />
</LinearLayout>

<ScrollView
    android:id="@+id/bizScrollView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <GridView
            android:id="@+id/bizFavoritesGrid"
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:columnWidth="90dp"
            android:gravity="center"
            android:horizontalSpacing="10dp"
            android:numColumns="auto_fit"
            android:paddingTop="10dp"
            android:stretchMode="columnWidth"
            android:verticalSpacing="10dp" >
        </GridView>

        <ExpandableListView
            android:id="@+id/bizList"
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:cacheColorHint="#00000000" >
        </ExpandableListView>
    </LinearLayout>
</ScrollView>

</ViewSwitcher>   
4

4 回答 4

1

dispatchTouchEvent(MotionEvent event)您可以通过覆盖滚动视图的功能来实现上述目的。在此函数内将事件发送到您的子列表视图。然后你还需要像这样为你的列表视图覆盖 dispatchTouchEvent

  int[] location = new int[2];
  listView.getLocationOnScreen(location);

  if (e.getRawX() > location[0] && e.getRawX()< location[0] + listView.getWidth() &&
   e.getRawY() > location[1] && e.getRawY() < location[1] + listView.getHeight())
  {
    int[] checkListLoc = new int[2];

    listView.getLocationOnScreen(checkListLoc);
    var offset = checkListLoc[1] - (e.getRawY() - e.GetY());
    e.OffsetLocation(0, 0 - offset);

    listView.dispatchTouchEvent(e);
    return true;
 }
 return base.dispatchTouchEvent(e);
于 2013-09-26T04:36:27.353 回答
0

使用GridLayout代替 GridView 。

于 2013-09-26T04:30:35.123 回答
0

根据 Android 指南,您不能将一种可滚动布局用于另一种。如果您使用的是 ScrollView,那么您不能在其中使用 ListView。因为这两种布局都是可滚动的。所以请使用任何一个来滚动你的。

于 2013-09-26T04:33:45.993 回答
0

首先删除滚动视图。使用 listview 并将 gridview 添加为 listview 的页脚视图。它会很好用。绝对解决你的问题。

于 2013-09-26T04:40:48.060 回答