首先,我想为我的英语提供支持,我来自俄罗斯,我希望谷歌翻译帮助我描述我的问题=)。 所以问题是 - 我在ScrollView中有一个gridView和ExpandableListView,我知道我不应该在ScrollView中放置一些可滚动的视图,但是对于我的目标,我无法找到替代方案。在我的项目中,我有一个带有类别的商业目录(如“电子产品”,“家庭和花园”,“汽车”等),我想做的就是将最流行的类别放入gridView(并为它们添加图标)和使scrollview像单个布局一样滚动它。但我的scrollView不会滚动它,我怎么能这样做?
我的bizCatalog Actvivty:
我的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>
答案 0 :(得分: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);
答案 1 :(得分:0)
使用GridLayout。
代替GridView答案 2 :(得分:0)
根据Android指南,您不能将一个可滚动布局用于另一个。如果您使用ScrollView,那么您不能在其中使用ListView。因为两个布局都是可滚动的。所以请使用任何一个滚动你的。
答案 3 :(得分:0)
首先删除滚动视图。使用listview并添加gridview作为listview的footerview。它会很棒。绝对可以解决你的问题。