Lines Matching refs:row
295 final View row = convertView != null ? convertView : createDreamInfoRow(parent);
296 row.setTag(dreamInfo);
299 ((ImageView) row.findViewById(android.R.id.icon)).setImageDrawable(dreamInfo.icon);
302 ((TextView) row.findViewById(android.R.id.title)).setText(dreamInfo.caption);
305 RadioButton radioButton = (RadioButton) row.findViewById(android.R.id.button1);
310 row.onTouchEvent(event);
316 View settingsDivider = row.findViewById(R.id.divider);
319 ImageView settingsButton = (ImageView) row.findViewById(android.R.id.button2);
327 mBackend.launchSettings((DreamInfo) row.getTag());
330 return row;
334 final View row = mInflater.inflate(R.layout.dream_info_row, parent, false);
335 final View header = row.findViewById(android.R.id.widget_frame);
340 activate((DreamInfo) row.getTag());
342 return row;