首先,我想为我的英语道歉,我来自俄罗斯,我希望谷歌翻译器能帮助我描述我的问题=)。所以问题是 - 我在 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>