lv.setOnItemClickListener (новый OnItemClickListener () {
@SuppressWarnings("deprecation")
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
LinearLayout layout=(LinearLayout) view.findViewById(R.id.listViewLayPerRow);
layout.setBackgroundColor(Color.YELLOW);
finish();
}
});