Lines Matching defs:convertView
1836 public View getView(int position, View convertView, ViewGroup parent) {
1839 if (convertView == null) {
1840 convertView = inflateCategoryHeader(LayoutInflater.from(parent.getContext()),
1844 final TextView title = (TextView) convertView.findViewById(android.R.id.title);
1848 if (convertView == null) {
1849 convertView = LayoutInflater.from(parent.getContext()).inflate(
1853 convertView.setPaddingRelative(mInsetSide, 0, mInsetSide, 0);
1859 final TextView text1 = (TextView) convertView.findViewById(android.R.id.text1);
1860 final ProgressBar progress = (ProgressBar) convertView.findViewById(
1864 UidDetailTask.bindView(mProvider, item, convertView);
1878 return convertView;