Home | History | Annotate | Download | only in applications

Lines Matching refs:holder

13 // View Holder used when displaying views
29 AppViewHolder holder = new AppViewHolder();
30 holder.rootView = convertView;
31 holder.appName = (TextView) convertView.findViewById(R.id.app_name);
32 holder.appIcon = (ImageView) convertView.findViewById(R.id.app_icon);
33 holder.appSize = (TextView) convertView.findViewById(R.id.app_size);
34 holder.disabled = (TextView) convertView.findViewById(R.id.app_disabled);
35 holder.checkBox = (CheckBox) convertView.findViewById(R.id.app_on_sdcard);
36 convertView.setTag(holder);
37 return holder;