0

我已将滚动视图应用于整个布局,并且该布局有一个列表视图。在模拟器中运行应用程序时,两个滚动视图都在为整个布局工作一个滚动视图,另一个为 listview 滚动视图(两者都工作正常)。但是当我在手机中安装我的应用程序时,只有外部滚动视图正在工作,listview 的滚动视图不起作用。谁能告诉我问题的原因和解决方案。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/ScrollView1"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"> 


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg4"
android:orientation="vertical"
android:scrollbarAlwaysDrawVerticalTrack="true" >
 <ListView
        android:id="@+id/listViewTickets"
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="10dp" >
    </ListView>
<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="right"
    android:layout_marginBottom="70dp"
    android:orientation="horizontal"
    >

    <Button
        android:id="@+id/btnNew"
        android:layout_width="80dp"
        android:layout_height="30dp"
        android:background="@drawable/btnnew" />

    <Button
        android:id="@+id/btnUpdate"
        android:layout_width="80dp"
        android:layout_height="30dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:background="@drawable/edit" />
</LinearLayout>

列表视图的内容是动态显示的。

4

2 回答 2

0

列表视图已经是可滚动的,因此您无法将其添加到滚动视图中。这是负责 ListView 的 Google 工程师的类似问题和回答: 如何将 ListView 放入 ScrollView 而不会崩溃?

于 2012-05-21T05:32:52.313 回答
0

我发现 youtube 视频Google I/O 2010 - ListView的世界是必不可少的手表。其中提到永远不要使用多个滚动小部件,除非它们在不同的轴上滚动。

于 2012-05-21T06:51:46.147 回答