Lines Matching refs:tv
99 TextView tv = (TextView) view.findViewById(R.id.download_title); in bindView() local
116 tv.setText(title); in bindView()
118 tv = (TextView) view.findViewById(R.id.domain); in bindView()
119 tv.setText(cursor.getString(mDescColumnId)); in bindView()
131 tv = (TextView) view.findViewById(R.id.complete_text); in bindView()
132 tv.setVisibility(View.VISIBLE); in bindView()
134 tv.setText(getErrorText(status)); in bindView()
136 tv.setText(r.getString(R.string.download_success, in bindView()
143 tv = (TextView) view.findViewById(R.id.complete_date); in bindView()
144 tv.setVisibility(View.VISIBLE); in bindView()
145 tv.setText(df.format(d)); in bindView()
148 tv = (TextView) view.findViewById(R.id.progress_text); in bindView()
149 tv.setVisibility(View.VISIBLE); in bindView()
161 tv.setText(r.getText(R.string.download_pending)); in bindView()
163 tv.setText(r.getText(R.string.download_pending_network)); in bindView()
188 tv.setText(sb.toString()); in bindView()