Android列表视图setOnItemClickListener仅在以下情况下有效



我有一个Android布局。我设置了一个类似list.setOnItemClickListener的监听器。一切似乎都很顺利。

在下面的行中:

<ScrollView android:layout_width="fill_parent"
            android:layout_height="wrap_content">

如果我将android:layout_heightwrap_content更改为fill_parent,它将不再工作(无法选择列表中的项目)。

只有当它设置为wrap_content时,它才能工作。为什么会发生这种情况?

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
     android:id="@android:id/tabhost"
     android:layout_width="match_parent"
     android:layout_height="match_parent">
<LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    <TabWidget android:id="@android:id/tabs"
               android:layout_width="match_parent"
               android:layout_height="wrap_content"
            />
    <FrameLayout android:id="@android:id/tabcontent"
                 android:layout_width="match_parent"
                 android:layout_height="match_parent"
            >
        <ListView android:id="@+id/restaurants"
                  android:layout_width="match_parent"
                  android:layout_height="match_parent"
                />
        <ScrollView android:layout_width="fill_parent"
                    android:layout_height="wrap_content">
            <TableLayout android:id="@+id/details"
                         android:layout_width="match_parent"
                         android:layout_height="wrap_content"
                         android:stretchColumns="1"
                         android:shrinkColumns="1"
                         android:paddingTop="4dip"
                    >
                <TableRow>
                    <TextView android:text="@string/name" />
                    <EditText android:id="@+id/name" />
                </TableRow>
                <TableRow>
                    <TextView android:text="@string/address" />
                    <EditText android:id="@+id/addr" />
                </TableRow>
                <TableRow>
                    <TextView android:text="Type:" />
                    <RadioGroup android:id="@+id/types">
                        <RadioButton android:layout_height="wrap_content"
                                     android:layout_width="wrap_content"
                                     android:id="@+id/take_out"
                                     android:text="@string/takeout"
                                     android:checked="true"
                                />
                        <RadioButton android:layout_height="wrap_content"
                                     android:layout_width="wrap_content"
                                     android:id="@+id/sit_down"
                                     android:text="@string/sitdown"
                                />
                        <RadioButton android:layout_height="wrap_content"
                                     android:layout_width="wrap_content"
                                     android:id="@+id/delivery"
                                     android:text="@string/delivery"
                                />
                    </RadioGroup>
                </TableRow>
                <TableRow>
                    <TextView android:text="@string/notes" />
                    <EditText android:id="@+id/notes" />
                </TableRow>
                <Button android:id="@+id/save"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:text="@string/save"
                        />
            </TableLayout>
        </ScrollView>
    </FrameLayout>
</LinearLayout>
</TabHost>

fill_parent(API 8级及更高版本中已弃用并重命名为MATCH_PARENT

将小部件的布局设置为fill_present将迫使其展开,以占用其所在布局元素内的可用空间。这大致相当于将Windows窗体控件的dockstyle设置为Fill

将顶级布局或控件设置为fill_present将强制它占据整个屏幕。

wrap_content

将视图的大小设置为wrap_content将强制其展开到仅足以包含其包含的值(或子控件)的程度。对于控件(如文本框(TextView)或图像(ImageView)),这将包装所显示的文本或图像。对于布局元素,它将调整布局大小,以适应作为其子项添加的控件/布局。

这里的Android代码文档中有一些详细信息。

您的ScrollView占用了ListView中可以填充到屏幕上的所有可用空间,基本上掩盖了它。

您永远不应该将ScrollView与ListView一起使用,因为ListView负责自己的垂直滚动。最重要的是,这样做会挫败ListView中处理大列表的所有重要优化,因为它有效地迫使ListView显示其整个项目列表,以填充ScrollView提供的无限容器--从…起http://developer.android.com/reference/android/widget/ScrollView.html

相关内容

  • 没有找到相关文章

最新更新