Home | History | Annotate | Download | only in worldclock

Lines Matching defs:TextView

36 import android.widget.TextView;
352 final TextView index = (TextView) view.findViewById(R.id.index);
353 final TextView name = (TextView) view.findViewById(R.id.city_name);
354 final TextView time = (TextView) view.findViewById(R.id.city_time);
365 holder.name.setText(city.getName(), TextView.BufferType.SPANNABLE);
602 private final TextView index;
603 private final TextView name;
604 private final TextView time;
607 public CityItemHolder(TextView index, TextView name, TextView time, CheckBox selected) {