我正在使用列表视图来显示 Base-Adpater 类中的项目。我将视图夸大为
if (convertView == null || vi.findViewById(R.id.artist)== null)
{
View vi = inflater.inflate(R.layout.task_list_lay, null);
}
& 将视图单击侦听器设置为:
vi.setOnClickListener(commonListen);
列表视图 xml:
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/table"
android:layout_marginTop="0dip"
android:divider="#b5b5b5"
android:dividerHeight="1dp"
android:choiceMode="singleChoice" >
</ListView>
如果我点击多个项目,它会选择所有这些项目并执行每个视图的单击侦听器操作。我不想要这种行为。我只想一次选择一项。