我有一个ListView,我现在用虚拟字符串填充。它目前拥有10个项目,但视图本身仅足以显示5.所以列表必须滚动当然。我使用以下代码构建了列表:
的ListView:
<RelativeLayout
android:id="@+id/catList"
android:layout_width="wrap_content"
android:layout_height="216dip"
android:layout_marginTop="120dip"
>
<ListView
android:id="@+id/categoryList"
android:layout_width="308dip"
android:layout_height="216dip"
android:layout_marginLeft="6dip"
android:background="#ffffff"
android:divider="#ffffff"
android:choiceMode="singleChoice"
android:cacheColorHint="#00000000"
>
</ListView>
<ImageView
android:id="@+id/catListFrame"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:src="@drawable/selectorframe"
/>
</RelativeLayout>
所以基本上在列表周围有一个图像框架。这些都嵌套在另一个布局中。
我有一个自定义项目xml文件,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:padding="10dip"
android:background="#ffffff"
>
<TextView
android:id="@+id/catTitle"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textSize="20dip"
android:textColor="#000000"
>
</TextView>
</LinearLayout>
这是让它全部工作的java:
private void setCategoryControls(){
btnBackHome = (ImageView)findViewById(R.id.catHomeBtn);
btnBackHome.setOnClickListener(goHome);
catList = (ListView)findViewById(R.id.categoryList);
catList.setOnItemClickListener(selectCat);
demoCats = new ArrayList<String>();
for(int i=1;i<=10;i++){
demoCats.add("Item " + i);
}
m_catAdapter = new CatAdapter(this,R.layout.catitem,demoCats);
catList.setAdapter(m_catAdapter);
}
private OnItemClickListener selectCat = new OnItemClickListener(){
public void onItemClick(AdapterView<?> a, View v, int position, long id){
if(selCatView!=null){
selCatView.setBackgroundColor(Color.parseColor("#ffffff"));
}
v.setBackgroundColor(Color.parseColor("#ffaa00"));
selCatView = v;
}
};
private class CatAdapter extends ArrayAdapter<String>{
private ArrayList<String> items;
public CatAdapter(Context context, int textViewResourceId, ArrayList<String> items){
super(context, textViewResourceId, items);
this.items = items;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (v == null) {
LayoutInflater vi = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.catitem, null);
}
String cat = items.get(position);
if (cat != null) {
TextView catName = (TextView) v.findViewById(R.id.catTitle);
if (catName != null) {
catName.setText(cat);
}
}
return v;
}
}
当我点击列表中的某个项目时,应该只更改该项目的背景颜色,而不是通常会突出显示2个项目(一个是可见的,一个是我必须滚动到的),大部分时间它甚至不是正确的项目。此外,如果我在项目突出显示时滚动,它将随机改变,当我在屏幕上和屏幕上滚动突出显示的项目时,该项目会突出显示。如果我不得不猜测,我会说它与ListView相关的事实很明显只跟踪可见的孩子。即使它有一个包含10个项目的适配器,如果我在列表视图上运行getChildCount,它只显示5或6,具体取决于是否部分可见,但它永远不会显示多于或少于可见项目的数量。 / p>